Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / tree-ssa / 20030820-2.c
blob9ca9fbb59c6b519127a1e70ef0c6a891bd40d463
1 /* { dg-do compile } */
2 /* { dg-options "-O1" } */
4 /* A test for variables getting out of their scope in copy propagation. */
6 void foo(void)
8 int k;
10 goto forward;
11 back:
12 bla (k);
13 return;
15 forward:
17 int i = bar ();
19 k = i;
21 goto back;