1/* { dg-do compile { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */
2/* { dg-options "-w -msse2 -Os" } */
3/* { dg-require-effective-target sse2 } */
4
5typedef float __m128 __attribute__ ((__vector_size__ (16), __may_alias__));
6
7extern void foo (__m128 x, __m128 y ,__m128 z ,__m128 a, int size);
8
9void
10bar (void)
11{
12  __m128 x = { 1.0 };
13  foo (x, x, x, x, 5);
14}
15
16/* { dg-final { scan-assembler-not "movups" { xfail { ! *-*-darwin* } } } } */
17