Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / tree-ssa / 20030814-1.c
blobd7b44a64bef3ca4123b30d053d48ba2c811d8f0c
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-dom3" } */
4 extern void abort (void);
6 com(int *blah)
8 int z = *blah;
9 if (z == 256)
11 oof (z);
12 abort ();
14 return *blah;
17 /* There should be precisely one load of blah. If there is
18 more than one, then the dominator optimizations failed. */
19 /* { dg-final { scan-tree-dump-times "\\*blah" 1 "dom3"} } */
21 /* { dg-final { cleanup-tree-dump "dom3" } } */