]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/990117-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 990117-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/990117-1.c b/gcc/testsuite/gcc.c-torture/execute/990117-1.c
deleted file mode 100644 (file)
index 9589ae7..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-int
-foo (int x, int y, int i, int j)
-{
-  double tmp1 = ((double) x / y);
-  double tmp2 = ((double) i / j);
-
-  return tmp1 < tmp2;
-}
-
-main ()
-{
-  if (foo (2, 24, 3, 4) == 0)
-    abort ();
-  return 0;
-}
-