arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / modref-dse-6.c
blobd1e45a893adb6ee99792d373e497f062c42902e6
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
3 int
4 main()
6 int a,b;
7 __attribute__ ((noinline))
8 void kill_me()
10 a=1234;
11 b=2234;
13 a=0;
14 b=1234;
15 __attribute__ ((noinline))
16 int reta()
18 return a;
20 return reta();
22 /* { dg-final { scan-tree-dump-not "kill_me" "optimized" } } */
23 /* { dg-final { scan-tree-dump-not "1234" "optimized" } } */