Commit 602c4c0d by Jeffrey A Law Committed by Jeff Law

cse.c (cse_insn): Replace the PATTERN of the insn with an new jump when...

	* cse.c (cse_insn): Replace the PATTERN of the insn with an new
	jump when changing a computed jump into a jump to a known
	target.

From-SVN: r32160
parent 4a92092a
Fri Feb 25 19:49:08 2000 Jeffrey A Law (law@cygnus.com)
* cse.c (cse_insn): Replace the PATTERN of the insn with an new
jump when changing a computed jump into a jump to a known
target.
Fri Feb 25 19:22:44 2000 Graham Stott <grahams@rcp.co.uk>
* i386.md (define_expand "clrstrsi"): Fix typo.
......
......@@ -5214,11 +5214,8 @@ cse_insn (insn, libcall_insn)
break;
}
/* We must actually validate the change. Consider a target
where unconditional jumps are more complex than
(set (pc) (label_ref)) such as the fr30. */
if (validate_change (insn, &SET_SRC (sets[i].rtl), trial, 0))
cse_jumps_altered = 1;
PATTERN (insn) = gen_jump (trial);
cse_jumps_altered = 1;
break;
}
......
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