Merge from mainline (160224:163495).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.target / i386 / incoming-4.c
blob80c169c24696e8b106bbc285a08f714e0d1eebba
1 /* PR middle-end/37009 */
2 /* { dg-do compile { target { { ! *-*-darwin* } && ilp32 } } } */
3 /* { dg-options "-w -msse2 -mpreferred-stack-boundary=2" } */
5 #include <stdarg.h>
6 #include <emmintrin.h>
8 extern void bar (int *);
10 __m128
11 foo(va_list arg)
13 int __attribute((aligned(16))) xxx;
15 xxx = 2;
16 bar (&xxx);
17 return va_arg (arg, __m128);
20 /* { dg-final { scan-assembler "andl\[\\t \]*\\$-16,\[\\t \]*%esp" } } */