c++: consteval propagation and templates [PR115986]
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr69454-2.c
blobb9c20619d65092a0108a4ee6c043f35953e0cb9d
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;