./:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20020605-1.c
blob960a4be7ed119492c1c5ea47325780e4b493deb4
1 /* This testcase caused on IA-32 -O2 endless loop in
2 merge_blocks when trying to merge a basic block
3 with itself. */
5 void f (void)
7 char *c;
8 do
10 if (c)
11 break;
13 while (1);
14 if (!c)
15 while (1)
16 f ();