URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [i386/] [push-1.c] - Rev 328
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */ /* { dg-options "-w -msse2 -Os" } */ /* { dg-require-effective-target sse2 } */ typedef float __m128 __attribute__ ((__vector_size__ (16), __may_alias__)); extern void foo (__m128 x, __m128 y ,__m128 z ,__m128 a, int size); void bar (void) { __m128 x = { 1.0 }; foo (x, x, x, x, 5); } /* { dg-final { scan-assembler-not "movups" { xfail { ! *-*-darwin* } } } } */
Go to most recent revision | Compare with Previous | Blame | View Log