OSDN Git Service

2010-03-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / push-1.c
1 /* { dg-do compile { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */
2 /* { dg-options "-w -msse2 -Os" } */
3
4 typedef float __m128 __attribute__ ((__vector_size__ (16), __may_alias__));
5
6 extern void foo (__m128 x, __m128 y ,__m128 z ,__m128 a, int size);
7
8 void
9 bar (void)
10 {
11   __m128 x = { 1.0 };
12   foo (x, x, x, x, 5);
13 }
14
15 /* { dg-final { scan-assembler-not "movups" { xfail { ! *-*-darwin* } } } } */