Commit 9a8e74f0 by Richard Kenner

(find_and_verify_loops): Fix error in last change.

From-SVN: r10370
parent e43634ef
......@@ -2368,7 +2368,7 @@ find_and_verify_loops (f)
/* Make sure that the target of P is within the current loop. */
if (JUMP_LABEL (p)
if (GET_CODE (p) == JUMP_INSN && JUMP_LABEL (p)
&& uid_loop_num[INSN_UID (JUMP_LABEL (p))] != this_loop_num)
outer_loop = this_loop_num;
......
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