diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-02-06 05:16:18 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-02-06 05:16:18 +0000 |
commit | a88624e447c72bc4d19a19a99c74f07c018c178b (patch) | |
tree | ac7e927fd7daed479bf2592a9f71c24e41b76ee9 /gcc/config/pa | |
parent | 11764cb7389ad445efe1e12a30ee6874759513fe (diff) | |
download | ppe42-gcc-a88624e447c72bc4d19a19a99c74f07c018c178b.tar.gz ppe42-gcc-a88624e447c72bc4d19a19a99c74f07c018c178b.zip |
* pa/pa.md (post_ldwm): Fix typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@13611 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/pa')
-rw-r--r-- | gcc/config/pa/pa.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 9c4b814bec4..774e33ef720 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -1445,15 +1445,15 @@ (define_insn "post_ldwm" [(set (match_operand:SI 0 "register_operand" "=r") (mem:SI (match_operand:SI 1 "register_operand" "=r"))) - (set (match_dup 0) - (plus:SI (match_dup 0) + (set (match_dup 1) + (plus:SI (match_dup 1) (match_operand:SI 2 "post_cint_operand" "")))] "" "* { if (INTVAL (operands[2]) > 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 "length" "4")]) |