8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/20000731-2.c
Jeffrey A Law 68c8d8ce93 20000731-2.c: New test.
* gcc-c-torture/execute/20000731-2.c: New test.
Fix will be applied shortly...

From-SVN: r35403
2000-07-31 22:11:57 -06:00

17 lines
165 B
C

int
main()
{
int i = 1;
int j = 0;
while (i != 1024 || j <= 0) {
i *= 2;
++ j;
}
if (j != 10)
abort ();
exit (0);
}