]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/930614-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930614-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/930614-1.c b/gcc/testsuite/gcc.c-torture/execute/930614-1.c
deleted file mode 100644 (file)
index 7b20634..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-f (double *ty)
-{
-  *ty = -1.0;
-}
-
-main ()
-{
-  double foo[6];
-  double tx = 0.0, ty, d;
-
-  f (&ty);
-
-  if (ty < 0)
-    ty = -ty;
-  d = (tx > ty) ? tx : ty;
-  if (ty != d)
-    abort ();
-  exit (0);
-}