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> Fri Feb 25 19:22:44 2000 Graham Stott <grahams@rcp.co.uk>
* i386.md (define_expand "clrstrsi"): Fix typo. * i386.md (define_expand "clrstrsi"): Fix typo.
......
...@@ -5214,11 +5214,8 @@ cse_insn (insn, libcall_insn) ...@@ -5214,11 +5214,8 @@ cse_insn (insn, libcall_insn)
break; break;
} }
/* We must actually validate the change. Consider a target PATTERN (insn) = gen_jump (trial);
where unconditional jumps are more complex than cse_jumps_altered = 1;
(set (pc) (label_ref)) such as the fr30. */
if (validate_change (insn, &SET_SRC (sets[i].rtl), trial, 0))
cse_jumps_altered = 1;
break; 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