2017-08-28 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr81921.c
blob332c0b81a357b43c08b386e3471107adad79f6b2
1 /* { dg-do compile } */
2 /* { dg-require-effective-target lto } */
3 /* { dg-options "-flto -march=x86-64" } */
5 extern __inline int __attribute__((__gnu_inline__, __always_inline__, __artificial__, target("sse2")))
6 _mm_loadu_si128 (int const *__P)
8 return *__P;
11 void __attribute__((target("ssse3"))) foo (void *p)
13 volatile int x = _mm_loadu_si128 (p);