]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/930603-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930603-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/930603-1.c b/gcc/testsuite/gcc.c-torture/execute/930603-1.c
deleted file mode 100644 (file)
index 6a84de0..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-float fx (x)
-     float x;
-{
-  return 1.0 + 3.0 / (2.302585093 * x);
-}
-
-main ()
-{
-  float fx (), inita (), initc (), a, b, c;
-  a = inita ();
-  c = initc ();
-  f ();
-  b = fx (c) + a;
-  f ();
-  if (a != 3.0 || b < 4.3257 || b > 4.3258 || c != 4.0)
-    abort ();
-  exit (0);
-}
-
-float inita () { return 3.0; }
-float initc () { return 4.0; }
-f () {}