aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/pr36786.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/pr36786.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/pr36786.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr36786.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/pr36786.c
deleted file mode 100644
index 6b62e80e7..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr36786.c
+++ /dev/null
@@ -1,12 +0,0 @@
-/* { dg-do compile { target { ! { ia32 } } } } */
-
-typedef int DItype __attribute__ ((mode (DI)));
-typedef unsigned int UDItype __attribute__ ((mode (DI)));
-typedef int TItype __attribute__ ((mode (TI)));
-
-__floattisf (TItype u)
-{
- DItype hi = u >> (8 * 8);
- UDItype count, shift;
- hi = u >> shift;
-}