PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr62208.c
blobca44a8558093721b63fbfc7c0c693dff7ccaeecf
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -fwhole-program -march=x86-64" } */
4 int *a;
5 unsigned int b;
7 void fn2 ()
9 int t[9];
10 for (; b; b++)
11 *a ^= (~t[b] != t[b]);
14 int fn1 ()
16 fn2 ();
17 return 0;
20 int main ()
22 fn1 ();
23 return 0;