]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20001031-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20001031-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20001031-1.c b/gcc/testsuite/gcc.c-torture/execute/20001031-1.c
deleted file mode 100644 (file)
index a2a6c83..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-extern void abort (void);
-extern void exit (int);
-
-void t1 (int x)
-{
-  if (x != 4100)
-    abort ();
-}
-
-int t2 (void)
-{
-  int i;
-  t1 ((i = 4096) + 4);
-  return i;
-}
-
-void t3 (long long x)
-{
-  if (x != 0x80000fffULL)
-    abort ();
-}
-
-long long t4 (void)
-{
-  long long i;
-  t3 ((i = 4096) + 0x7fffffffULL);
-  return i;
-}
-
-main ()
-{
-  if (t2 () != 4096)
-    abort ();
-  if (t4 () != 4096)
-    abort ();
-  exit (0);
-}