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