]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/20011009-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 20011009-1.c
diff --git a/gcc/testsuite/gcc.dg/20011009-1.c b/gcc/testsuite/gcc.dg/20011009-1.c
deleted file mode 100644 (file)
index dbf32e6..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/* { dg-do run { target i?86-*-* } } */
-/* { dg-options "-O2" } */
-
-extern void abort (void);
-extern void exit (int);
-
-int main ()
-{
-  int x;
-
-  asm ("movl $26, %0 # 26 |-> reg \n\t"
-       "movl $28, %0" : "=r" (x));
-  if (x != 28)
-    abort ();
-  exit (0);
-}