Commit 419fef71 by Jeff Law

gcse.c (cprop_jump): Clear JUMP_LABEL field when we create a nop-jump.

	* gcse.c (cprop_jump): Clear JUMP_LABEL field when we create
	a nop-jump.

From-SVN: r47183
parent 3293c3e3
2001-11-19 Neil Booth <neil@daikokuya.demon.co.uk>
2001-11-19 Jeff Law <law@redhat.com>
* gcse.c (cprop_jump): Clear JUMP_LABEL field when we create
a nop-jump.
2000-11-19 Neil Booth <neil@daikokuya.demon.co.uk>
* cppmacro.c (_cpp_backup_tokens): Revert previous check-in.
Don't fall off the base token run.
......
......@@ -4043,7 +4043,10 @@ cprop_jump (bb, insn, from, src)
SET_SRC (set) = new;
if (JUMP_LABEL (insn) != 0)
--LABEL_NUSES (JUMP_LABEL (insn));
{
--LABEL_NUSES (JUMP_LABEL (insn));
JUMP_LABEL (insn) = NULL_RTX;
}
}
/* Otherwise, this must be a valid instruction. */
......
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