Reset branch to trunk.
[official-gcc.git] / trunk / gcc / testsuite / gcc.c-torture / execute / 20030909-1.c
blob2f149857fc735942b3bc35d860cf9f78e2b3d298
1 void abort ();
2 void exit (int);
4 void test(int x, int y)
6 if (x == y)
7 abort ();
10 void foo(int x, int y)
12 if (x == y)
13 goto a;
14 else
16 a:;
17 if (x == y)
18 goto b;
19 else
21 b:;
22 if (x != y)
23 test (x, y);
28 int main(void)
30 foo (0, 0);
32 exit (0);