Commit 6d7d084a by Richard Kenner

(goto_block_pat): Ignore undefined label.

From-SVN: r7555
parent 9730876c
...@@ -2750,6 +2750,8 @@ goto_block_pat (insn, regstack, pat) ...@@ -2750,6 +2750,8 @@ goto_block_pat (insn, regstack, pat)
abort (); abort ();
/* First, see if in fact anything needs to be done to the stack at all. */ /* First, see if in fact anything needs to be done to the stack at all. */
if (INSN_UID (label) <= 0)
return;
label_stack = &block_stack_in[BLOCK_NUM (label)]; label_stack = &block_stack_in[BLOCK_NUM (label)];
......
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