]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/961122-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 961122-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/961122-1.c b/gcc/testsuite/gcc.c-torture/execute/961122-1.c
deleted file mode 100644 (file)
index 1f0a634..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-long long acc;
-
-addhi (short a)
-{
-  acc += (long long) a << 32;
-}
-
-subhi (short a)
-{
-  acc -= (long long) a << 32;
-}
-
-main ()
-{
-  acc = 0xffff00000000ll;
-  addhi (1);
-  if (acc != 0x1000000000000ll)
-    abort ();
-  subhi (1);
-  if (acc != 0xffff00000000ll)
-    abort ();
-  exit (0);
-}