]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/930622-2.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930622-2.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/930622-2.c b/gcc/testsuite/gcc.c-torture/execute/930622-2.c
deleted file mode 100644 (file)
index d049b00..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-long double
-ll_to_ld (long long n)
-{
-  return n;
-}
-
-long long
-ld_to_ll (long double n)
-{
-  return n;
-}
-
-main ()
-{
-  long long n;
-
-  if (ll_to_ld (10LL) != 10.0)
-    abort ();
-
-  if (ld_to_ll (10.0) != 10)
-    abort ();
-
-  exit (0);
-}