aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/991230-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/991230-1.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/991230-1.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/991230-1.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/991230-1.c
deleted file mode 100644
index 2c9f011ce..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/991230-1.c
+++ /dev/null
@@ -1,24 +0,0 @@
-/* { dg-do run } */
-/* { dg-require-effective-target ia32 } */
-/* { dg-options "-O -ffast-math -mtune=i486" } */
-
-/* Test that floating point greater-than tests are compiled correctly with
- -ffast-math. */
-
-extern void abort (void);
-
-static int gt (double a, double b)
-{
- if (a > b)
- return 4;
- return 0;
-}
-
-static double zero = 0.0;
-
-int main ()
-{
- if (gt (zero, zero))
- abort ();
- return 0;
-}