Commit 9e390837 by Richard Kenner

(jump_optimize): Fix potential infinite loop.

From-SVN: r11253
parent 72c3833b
/* Optimize jump instructions, for GNU compiler.
Copyright (C) 1987, 88, 89, 91-94, 1995 Free Software Foundation, Inc.
Copyright (C) 1987, 88, 89, 91-95, 1996 Free Software Foundation, Inc.b
This file is part of GNU CC.
......@@ -1505,7 +1505,7 @@ jump_optimize (f, cross_jump, noop_moves, after_regscan)
else if (ultimate && GET_CODE (ultimate) != RETURN)
ultimate = XEXP (ultimate, 0);
if (ultimate)
if (ultimate && JUMP_LABEL(insn) != ultimate)
changed |= redirect_jump (insn, ultimate);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment