aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/pr58690.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/pr58690.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/pr58690.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr58690.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/pr58690.c
deleted file mode 100644
index 87a87cc9c..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr58690.c
+++ /dev/null
@@ -1,14 +0,0 @@
-/* { dg-do compile { target { ! { ia32 } } } } */
-/* { dg-require-effective-target maybe_x32 } */
-/* { dg-options "-O2 -mx32 -maddress-mode=short" } */
-
-struct gomp_thread
-{
- char foo[41];
-};
-extern __thread struct gomp_thread gomp_tls_data;
-void
-foo (void)
-{
- __builtin_memset (&gomp_tls_data, '\0', sizeof (gomp_tls_data));
-}