aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20020927-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/20020927-1.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/20020927-1.c26
1 files changed, 0 insertions, 26 deletions
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
index b93d8a18d5e..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/20020927-1.c
+++ /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;
-}