]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/991230-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 991230-1.c
diff --git a/gcc/testsuite/gcc.dg/991230-1.c b/gcc/testsuite/gcc.dg/991230-1.c
deleted file mode 100644 (file)
index 39b2595..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/* { dg-do run { target i?86-*-* } } */
-/* { dg-options "-O -ffast-math -mcpu=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;
-}