1/* PR middle-end/37009 */
2/* { dg-do compile { target { { ! *-*-darwin* } && ilp32 } } } */
3/* { dg-options "-w -msse2 -mpreferred-stack-boundary=2" } */
4/* { dg-require-effective-target sse2 } */
5
6#include <emmintrin.h>
7
8extern void bar (int *);
9
10int
11foo(__m128 x, __m128 y, __m128 z, __m128 a, int size)
12{
13  int __attribute((aligned(16))) xxx;
14
15  xxx = 2;
16  bar (&xxx);
17  return size;
18}
19
20/* { dg-final { scan-assembler-not "and\[l\]\[ \t\]" } } */
21