]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20020103-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20020103-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20020103-1.c b/gcc/testsuite/gcc.c-torture/execute/20020103-1.c
deleted file mode 100644 (file)
index c010aea..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/* On h8300 port, the following used to be broken with -mh or -ms.  */
-
-extern void abort (void);
-extern void exit (int);
-
-unsigned long
-foo (unsigned long a)
-{
-  return a ^ 0x0000ffff;
-}
-
-unsigned long
-bar (unsigned long a)
-{
-  return a ^ 0xffff0000;
-}
-
-int
-main ()
-{
-  if (foo (0) != 0x0000ffff)
-    abort ();
-
-  if (bar (0) != 0xffff0000)
-    abort ();
-
-  exit (0);
-}