Commit e081ed26 by Richard Kenner

(find_barrier): When create new label, set LABEL_NUSES to 1.

From-SVN: r10497
parent 5dbcc9c0
...@@ -1283,6 +1283,7 @@ find_barrier (from) ...@@ -1283,6 +1283,7 @@ find_barrier (from)
from = emit_jump_insn_after (gen_jump (label), from); from = emit_jump_insn_after (gen_jump (label), from);
JUMP_LABEL (from) = label; JUMP_LABEL (from) = label;
LABEL_NUSES (label) = 1;
found_barrier = emit_barrier_after (from); found_barrier = emit_barrier_after (from);
emit_label_after (label, found_barrier); emit_label_after (label, found_barrier);
} }
......
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