aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20011229-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/20011229-2.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/20011229-2.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/20011229-2.c b/gcc/testsuite/gcc.c-torture/compile/20011229-2.c
deleted file mode 100644
index bb49bd18e34..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/20011229-2.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Test whether jump threading doesn't ICE if redirecting the jump to exit
- block. */
-
-extern int bar ();
-extern void baz ();
-
-void foo ()
-{
- int x;
-
- do
- {
- if ((x = bar ()) == 1)
- baz ();
- }
- while (x == 1);
-}