Be careful about comdat boundary in ICF (PR ipa/82352).
[official-gcc.git] / gcc / testsuite / g++.dg / opt / mmx2.C
blob8ee6cd469ffe14665b7bbdc53516ec54b59afa32
1 // { dg-do link { target i?86-*-* x86_64-*-* } }
2 // { dg-options "-O2 -mmmx" }
3 // { dg-prune-output "mangled name" }
5 #include <mmintrin.h>
7 static union u { __m64 m; long long l; } u;
8 extern "C" void abort (void);
10 __attribute__((noinline))
11 void bar (__m64 x)
13   u.m = x;
16 int
17 main ()
19   bar (_mm_set_pi32 (0x000000FF,0xFFFF00FF));
20   _mm_empty ();
21   if (u.l != 0xffffff00ffLL)
22     abort ();
23   return 0;