aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/pr26778.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/pr26778.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/pr26778.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr26778.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/pr26778.c
deleted file mode 100644
index f871b5d61..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr26778.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/* { dg-do compile } */
-/* { dg-require-effective-target ia32 } */
-/* { dg-options "-O2 -march=pentium3" } */
-
-typedef union {
- long long l;
- double d;
-} db_number;
-
-double test(double x[3]) {
- double th = x[1] + x[2];
- if (x[2] != th - x[1]) {
- db_number thdb;
- thdb.d = th;
- thdb.l++;
- th = thdb.d;
- }
- return x[0] + th;
-}
-
-/* { dg-final { scan-assembler-not "mov.ps" } } */