]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20020127-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20020127-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20020127-1.c b/gcc/testsuite/gcc.c-torture/execute/20020127-1.c
deleted file mode 100644 (file)
index 88078dc..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/* This used to fail on h8300.  */
-
-extern void abort (void);
-extern void exit (int);
-
-unsigned long
-foo (unsigned long n)
-{
-  return (~n >> 3) & 1;
-}
-
-int
-main ()
-{
-  if (foo (1 << 3) != 0)
-    abort ();
-
-  if (foo (0) != 1)
-    abort ();
-
-  exit (0);
-}