PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000731-2.c
blob112aa1c3a6198d2d268d182013a4a90e1eb14aa7
1 int
2 main()
4 int i = 1;
5 int j = 0;
7 while (i != 1024 || j <= 0) {
8 i *= 2;
9 ++ j;
12 if (j != 10)
13 abort ();
15 exit (0);