2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr69454-2.c
blob4c9a6ca240f85ac3bc74cfc640e799af771ca141
1 /* { dg-do compile { target { ia32 } } } */
2 /* { dg-options "-O2 -msse2 -mno-accumulate-outgoing-args -mpreferred-stack-boundary=2" } */
4 extern void fn2 ();
5 long long a, b;
7 void fn1 ()
9 long long c = a;
10 a = b ^ a;
11 fn2 ();
12 a = c;