2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20011229-2.c
blobbb49bd18e3433a2bdb2f9565c5988404485fb4fa
1 /* Test whether jump threading doesn't ICE if redirecting the jump to exit
2 block. */
4 extern int bar ();
5 extern void baz ();
7 void foo ()
9 int x;
13 if ((x = bar ()) == 1)
14 baz ();
16 while (x == 1);