]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/20020616-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 20020616-1.c
diff --git a/gcc/testsuite/gcc.dg/20020616-1.c b/gcc/testsuite/gcc.dg/20020616-1.c
deleted file mode 100644 (file)
index 4630664..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/* PR opt/6722 */
-/* { dg-do run { target i?86-*-* } } */
-/* { dg-options "-O2" } */
-
-register int k asm("%ebx");
-
-void __attribute__((noinline))
-foo()
-{
-  k = 1;
-}
-
-void test()
-{
-  int i;
-  for (i = 0; i < 10; i += k)
-    {
-      k = 0;
-      foo();
-    }
-}
-
-int main()
-{
-  int old = k;
-  test();
-  k = old;
-  return 0;
-}