blob: 2947d3347cd9815c9a1a94adf1629ed4c1a59ce6 [file] [log] [blame]
/* PR middle-end/37009 */
/* { dg-do compile { target { { ! *-*-darwin* } && ilp32 } } } */
/* { dg-options "-w -msse2 -mpreferred-stack-boundary=2" } */
#include <emmintrin.h>
extern void bar (int *);
int
foo(__m128 x, __m128 y, __m128 z, __m128 a, int size)
{
int __attribute((aligned(16))) xxx;
xxx = 2;
bar (&xxx);
return size;
}
/* { dg-final { scan-assembler-not "and\[l\]\[ \t\]" } } */