Commit c6096c5e by Richard Stallman

*** empty log message ***

From-SVN: r1598
parent 2c31e123
...@@ -2270,10 +2270,13 @@ find_and_verify_loops (f) ...@@ -2270,10 +2270,13 @@ find_and_verify_loops (f)
and move the block of code to the spot we found. */ and move the block of code to the spot we found. */
if (GET_CODE (p) == JUMP_INSN if (GET_CODE (p) == JUMP_INSN
&& JUMP_LABEL (p) != 0 && JUMP_LABEL (p) != 0
&& condjump_p (p) /* Just ignore jumps to labels that were never emitted.
&& ! simplejump_p (p) These always indicate compilation errors. */
&& next_real_insn (JUMP_LABEL (p)) == our_next) && INSN_UID (JUMP_LABEL (p)) != 0
&& condjump_p (p)
&& ! simplejump_p (p)
&& next_real_insn (JUMP_LABEL (p)) == our_next)
{ {
rtx target rtx target
= JUMP_LABEL (insn) ? JUMP_LABEL (insn) : get_last_insn (); = JUMP_LABEL (insn) ? JUMP_LABEL (insn) : get_last_insn ();
......
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