]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/compile/20020927-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20020927-1.c
diff --git a/gcc/testsuite/gcc.c-torture/compile/20020927-1.c b/gcc/testsuite/gcc.c-torture/compile/20020927-1.c
deleted file mode 100644 (file)
index b93d8a1..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/* PR optimization/7520 */
-/* ICE at -O3 on x86 due to register life problems caused by
-   the return-without-value in bar.  */
-
-int
-foo ()
-{
-  int i;
-  long long int j;
-
-  while (1)
-    {
-      if (j & 1)
-       ++i;
-      j >>= 1;
-      if (j)
-       return i;
-    }
-}
-
-int
-bar ()
-{
-  if (foo ())
-    return;
-}