]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20001009-2.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20001009-2.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20001009-2.c b/gcc/testsuite/gcc.c-torture/execute/20001009-2.c
deleted file mode 100644 (file)
index eedc299..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-int b=1;
-int foo()
-{
-  int a;
-  int c;
-  a=0xff;
-  for (;b;b--)
-  {
-    c=1;
-    asm(""::"r"(c));
-    c=(signed char)a;
-  }
-  if (c!=-1)
-    abort();
-  return c;
-}
-int main()
-{
-  foo();
-  return 0;
-}