2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / incoming-1.c
blob86e98a79b479de4a4acbef9305a4b68943603d29
1 /* PR middle-end/37009 */
2 /* { dg-do compile { target { { ! *-*-darwin* } && ilp32 } } } */
3 /* { dg-options "-w -msse2 -mpreferred-stack-boundary=2" } */
5 #include <emmintrin.h>
7 extern void bar (int *);
9 int
10 foo(__m128 x, __m128 y, __m128 z, int size)
12 int __attribute((aligned(16))) xxx;
14 xxx = 2;
15 bar (&xxx);
16 return size;
19 /* { dg-final { scan-assembler "andl\[\\t \]*\\$-16,\[\\t \]*%esp" } } */