Don't define x86-64 __strncmp_ssse3 in libc.a
[glibc.git] / elf / tst-audit6.c
blob64209a152e7424a66d47d81c92ed3883b3c4bda0
1 /* Test case for x86-64 preserved registers in dynamic linker. */
3 #include <stdlib.h>
4 #include <string.h>
5 #include <cpuid.h>
6 #include <emmintrin.h>
8 extern __m128i audit_test (__m128i, __m128i, __m128i, __m128i,
9 __m128i, __m128i, __m128i, __m128i);
12 static int
13 avx_enabled (void)
15 unsigned int eax, ebx, ecx, edx;
17 if (__get_cpuid (1, &eax, &ebx, &ecx, &edx) == 0
18 || (ecx & (bit_AVX | bit_OSXSAVE)) != (bit_AVX | bit_OSXSAVE))
19 return 0;
21 /* Check the OS has AVX and SSE saving enabled. */
22 asm ("xgetbv" : "=a" (eax), "=d" (edx) : "c" (0));
24 return (eax & 6) == 6;
28 int
29 main (void)
31 /* Run AVX test only if AVX is supported. */
32 if (avx_enabled ())
34 __m128i xmm = _mm_setzero_si128 ();
35 __m128i ret = audit_test (xmm, xmm, xmm, xmm, xmm, xmm, xmm, xmm);
37 xmm = _mm_set1_epi32 (0x98abcdef);
38 if (memcmp (&xmm, &ret, sizeof (ret)))
39 abort ();
41 return 0;