PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20030820-1.c
blobbfd1b509636f7ec4afa0b72aedd845d465f2843f
1 /* { dg-do compile } */
2 /* { dg-options "-O1" } */
4 /* A test for unreachable blocks removal -- bind_expr whose entry is
5 unreachable, but it contains reachable statements. */
7 void bar (void);
8 void foo(void)
10 if (1)
12 goto bla;
14 else
16 xxx:
18 bla:
19 bar ();
20 return;
22 goto xxx;