Commit 8825ae50 by Kazu Hirata Committed by Kazu Hirata

h8300.md (ldm_h8300s_2_normal): Use HImode for addresses.

	* config/h8300/h8300.md (ldm_h8300s_2_normal): Use HImode for
	addresses.

From-SVN: r75036
parent 38910ebb
2003-12-26 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md (ldm_h8300s_2_normal): Use HImode for
addresses.
2003-12-25 Kazu Hirata <kazu@cs.umass.edu>
* config/m32r/m32r.md: Remove a constraint from a splitter.
......
......@@ -2090,11 +2090,11 @@
(define_insn "ldm_h8300s_2_normal"
[(parallel
[(set (reg:SI SP_REG)
(plus:SI (reg:SI SP_REG) (const_int 8)))
(set (mem:SI (plus:SI (reg:SI SP_REG) (const_int 4)))
[(set (reg:HI SP_REG)
(plus:HI (reg:HI SP_REG) (const_int 8)))
(set (mem:SI (plus:HI (reg:HI SP_REG) (const_int 4)))
(match_operand:SI 0 "register_operand" ""))
(set (mem:SI (reg:SI SP_REG))
(set (mem:SI (reg:HI SP_REG))
(match_operand:SI 1 "register_operand" ""))])]
"TARGET_H8300S && TARGET_NORMAL_MODE
&& ((REGNO (operands[0]) == 0 && REGNO (operands[1]) == 1)
......
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