]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20020225-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20020225-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20020225-1.c b/gcc/testsuite/gcc.c-torture/execute/20020225-1.c
deleted file mode 100644 (file)
index 61724a1..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/* This testcase failed at -O2 on powerpc64 due to andsi3 writing
-   non-zero bits to the high 32 bits of a 64 bit register.  */
-
-extern void abort (void);
-extern void exit (int);
-
-unsigned long foo (unsigned long base, unsigned int val)
-{
-  return base + (val & 0x80000001);
-}
-
-int main (void)
-{
-  if (foo (0L, 0x0ffffff0) != 0L)
-    abort ();
-  exit (0);
-}