Commit 1b84b6f8 by Jeff Law

* pa/pa.md (post_ldwm): Fix typos.

From-SVN: r13611
parent 0b4969a6
...@@ -1445,15 +1445,15 @@ ...@@ -1445,15 +1445,15 @@
(define_insn "post_ldwm" (define_insn "post_ldwm"
[(set (match_operand:SI 0 "register_operand" "=r") [(set (match_operand:SI 0 "register_operand" "=r")
(mem:SI (match_operand:SI 1 "register_operand" "=r"))) (mem:SI (match_operand:SI 1 "register_operand" "=r")))
(set (match_dup 0) (set (match_dup 1)
(plus:SI (match_dup 0) (plus:SI (match_dup 1)
(match_operand:SI 2 "post_cint_operand" "")))] (match_operand:SI 2 "post_cint_operand" "")))]
"" ""
"* "*
{ {
if (INTVAL (operands[2]) > 0) if (INTVAL (operands[2]) > 0)
return \"ldwm %2(0,%1),%0\"; return \"ldwm %2(0,%1),%0\";
return \"ldws,ma %2(0,%1),%1\"; return \"ldws,ma %2(0,%1),%0\";
}" }"
[(set_attr "type" "load") [(set_attr "type" "load")
(set_attr "length" "4")]) (set_attr "length" "4")])
......
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