Commit e1d4f419 by H.J. Lu Committed by H.J. Lu

re PR target/41665 (Typo in addsi_1_zext?)

2009-10-11  H.J. Lu  <hongjiu.lu@intel.com>

	PR target/41665
	* config/i386/i386.md (addsi_1_zext): Get the proper second
	operand for lea.

From-SVN: r152647
parent c47d1dba
2009-10-11 H.J. Lu <hongjiu.lu@intel.com>
PR target/41665
* config/i386/i386.md (addsi_1_zext): Get the proper second
operand for lea.
2009-10-11 Richard Sandiford <rdsandiford@googlemail.com> 2009-10-11 Richard Sandiford <rdsandiford@googlemail.com>
* simplify-rtx.c (simplify_replace_rtx): Use rtx_equal_p for * simplify-rtx.c (simplify_replace_rtx): Use rtx_equal_p for
...@@ -6305,7 +6305,7 @@ ...@@ -6305,7 +6305,7 @@
switch (get_attr_type (insn)) switch (get_attr_type (insn))
{ {
case TYPE_LEA: case TYPE_LEA:
operands[2] = SET_SRC (XVECEXP (PATTERN (insn), 0, 0)); operands[2] = XEXP (SET_SRC (XVECEXP (PATTERN (insn), 0, 0)), 0);
return "lea{l}\t{%a2, %k0|%k0, %a2}"; return "lea{l}\t{%a2, %k0|%k0, %a2}";
case TYPE_INCDEC: case TYPE_INCDEC:
......
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