blob: ed3562ba53a68a3860a484e4c7b3a68a149dcf89 [file] [log] [blame]
/* { dg-do run } */
/* { dg-options "-O2 -msse" } */
/* { dg-require-effective-target sse } */
#ifndef CHECK_H
#define CHECK_H "sse-check.h"
#endif
#ifndef TEST
#define TEST sse_test
#endif
#include CHECK_H
#include <xmmintrin.h>
static __m128
__attribute__((noinline, unused))
test (float *e)
{
return _mm_load_ps (e);
}
static void
TEST (void)
{
union128 u;
float e[4] __attribute__ ((aligned (16))) = {2134.3343,1234.635654, 1.2234, 876.8976};
u.x = test (e);
if (check_union128 (u, e))
abort ();
}