2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / loop-9.c
blob523057593a3f41167bbb2e3559ddce84b26cbc0d
1 /* Source: Neil Booth, from PR # 115. */
3 int false()
5 return 0;
8 extern void abort (void);
10 int main (int argc,char *argv[])
12 int count = 0;
14 while (false() || count < -123)
15 ++count;
17 if (count)
18 abort ();
20 return 0;