/* { dg-do run } */ /* { dg-options "-O2 -msse" } */ #ifndef CHECK_H #define CHECK_H "sse-check.h" #endif #ifndef TEST #define TEST sse_test #endif #include CHECK_H #include static __m128 __attribute__((noinline, unused)) test (float *e) { return _mm_loadu_ps (e); } static void TEST (void) { union128 u; float e[4] = {2134.3343,1234.635654, 1.2234, 876.8976}; u.x = test (e); if (check_union128 (u, e)) abort (); }