]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20001108-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20001108-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20001108-1.c b/gcc/testsuite/gcc.c-torture/execute/20001108-1.c
deleted file mode 100644 (file)
index a2a3255..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-long long
-signed_poly (long long sum, long x)
-{
-  sum += (long long) (long) sum * (long long) x;
-  return sum;
-}
-
-unsigned long long
-unsigned_poly (unsigned long long sum, unsigned long x)
-{
-  sum += (unsigned long long) (unsigned long) sum * (unsigned long long) x;
-  return sum;
-}
-
-int
-main (void)
-{
-  if (signed_poly (2LL, -3) != -4LL)
-    abort ();
-  
-  if (unsigned_poly (2ULL, 3) != 8ULL)
-    abort ();
-
-  exit (0);
-}