PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr69454-1.c
blob47b47f7c2b87bbca62edd4f63658101a1fff990e
1 /* { dg-do compile { target ia32 } } */
2 /* { dg-options "-O2 -msse2 -mno-accumulate-outgoing-args -mpreferred-stack-boundary=2" } */
4 typedef struct { long long w64[2]; } V128;
5 extern V128* fn2(void);
6 long long a;
7 V128 b;
8 void fn1() {
9 V128 *c = fn2();
10 c->w64[0] = a ^ b.w64[0];