URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [i386/] [sse-1.c] - Rev 848
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR 12902 */ /* { dg-do compile } */ /* { dg-options "-O1 -msse" } */ #include <xmmintrin.h> typedef union { int i[4]; float f[4]; __m128 v; } vector4_t; void swizzle (const void *a, vector4_t * b, vector4_t * c) { b->v = _mm_loadl_pi (b->v, (__m64 *) a); c->v = _mm_loadl_pi (c->v, ((__m64 *) a) + 1); } /* While one legal rendering of each statement would be movaps;movlps;movaps, we can implmenent this with just movlps;movlps. Since we do now, anything less would be a regression. */ /* { dg-final { scan-assembler-not "movaps" } } */ /* { dg-final { scan-assembler "movlps" } } */
Go to most recent revision | Compare with Previous | Blame | View Log