]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/cvt-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / cvt-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/cvt-1.c b/gcc/testsuite/gcc.c-torture/execute/cvt-1.c
deleted file mode 100644 (file)
index 6bb1934..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-static inline long
-g1 (double x)
-{
-  return (double) (long) x;
-}
-
-long
-g2 (double f)
-{
-  return f;
-}
-
-double
-f (long i)
-{
-  if (g1 (i) != g2 (i))
-    abort ();
-  return g2 (i);
-}
-
-main ()
-{
-  if (f (123456789L) != 123456789L)
-    abort ();
-  if (f (123456789L) != g2 (123456789L))
-    abort ();
-  exit (0);
-}