Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / tree-ssa / 20040514-1.c
blob4c283507598d5f34a3a4eba97d376f5b68b84390
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-phiopt1-details" } */
4 int t( int i)
6 int j;
7 if(i ==0)
9 j = 1;
10 goto end;
12 j = 0;
13 end:
14 return j;
17 /* Should have no ifs left after straightening. */
18 /* { dg-final { scan-tree-dump-times "if " 0 "phiopt1"} } */
19 /* { dg-final { cleanup-tree-dump "phiopt1" } } */