From 73709b2611f29d73dbe31de70cc775f27e2650aa Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Thu, 25 Apr 2013 19:23:11 +0000 Subject: Move x86_64-specific audit tests to sysdeps/x86_64/. --- sysdeps/x86_64/tst-auditmod3a.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 sysdeps/x86_64/tst-auditmod3a.c (limited to 'sysdeps/x86_64/tst-auditmod3a.c') diff --git a/sysdeps/x86_64/tst-auditmod3a.c b/sysdeps/x86_64/tst-auditmod3a.c new file mode 100644 index 0000000000..9514aba505 --- /dev/null +++ b/sysdeps/x86_64/tst-auditmod3a.c @@ -0,0 +1,24 @@ +/* Test case for x86-64 preserved registers in dynamic linker. */ + +#include +#include +#include + +__m128i +audit_test (__m128i x0, __m128i x1, __m128i x2, __m128i x3, + __m128i x4, __m128i x5, __m128i x6, __m128i x7) +{ + __m128i xmm = _mm_setzero_si128 (); + + if (memcmp (&xmm, &x0, sizeof (xmm)) + || memcmp (&xmm, &x1, sizeof (xmm)) + || memcmp (&xmm, &x2, sizeof (xmm)) + || memcmp (&xmm, &x3, sizeof (xmm)) + || memcmp (&xmm, &x4, sizeof (xmm)) + || memcmp (&xmm, &x5, sizeof (xmm)) + || memcmp (&xmm, &x6, sizeof (xmm)) + || memcmp (&xmm, &x7, sizeof (xmm))) + abort (); + + return xmm; +} -- cgit 1.4.1