]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/991129-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 991129-1.c
diff --git a/gcc/testsuite/gcc.dg/991129-1.c b/gcc/testsuite/gcc.dg/991129-1.c
deleted file mode 100644 (file)
index 24faefd..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Test against a problem in push_reload.  */
-
-/* { dg-do compile { target i?86-*-* } } */
-/* { dg-options "-O2" } */
-
-unsigned long foo (unsigned long long x, unsigned long y)
-{
-    unsigned long a;
-
-    x += y;
-
-    asm ("" : "=a" (a) : "A" (x), "rm" (y));
-
-    return a;
-}