diff options
author | tege <tege@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-11-07 22:49:32 +0000 |
---|---|---|
committer | tege <tege@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-11-07 22:49:32 +0000 |
commit | a48713f2bc6597e847f020f0c33e655f097203ef (patch) | |
tree | 51300fd331a24f69cee4126f77216820e370651c /gcc | |
parent | 8a2a3d43a3829b9de4b1bde23756e781d917449a (diff) | |
download | gcc-a48713f2bc6597e847f020f0c33e655f097203ef.tar.gz |
(DImode load-with-update matcher): Fix typo in MEM mode.
(compare patterns): Fix several typos, SImode => CCmode.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8398 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 10e0fe9858d..3a1b6f6b6d0 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -4261,7 +4261,7 @@ (define_insn "" [(set (match_operand:DI 3 "gpc_reg_operand" "=r,r") - (mem:SI (plus:DI (match_operand:DI 1 "gpc_reg_operand" "0,0") + (mem:DI (plus:DI (match_operand:DI 1 "gpc_reg_operand" "0,0") (match_operand:DI 2 "reg_or_short_operand" "r,I")))) (set (match_operand:DI 0 "gpc_reg_operand" "=b,b") (plus:DI (match_dup 1) (match_dup 2)))] @@ -5600,7 +5600,7 @@ [(set_attr "length" "12")]) (define_insn "" - [(set (match_operand:SI 3 "cc_reg_operand" "=x") + [(set (match_operand:CC 3 "cc_reg_operand" "=x") (compare:CC (lt:SI (match_operand:SI 1 "gpc_reg_operand" "r") (match_operand:SI 2 "reg_or_short_operand" "rI")) @@ -5623,7 +5623,7 @@ [(set_attr "length" "12")]) (define_insn "" - [(set (match_operand:SI 0 "cc_reg_operand" "=x") + [(set (match_operand:CC 0 "cc_reg_operand" "=x") (compare:CC (plus:SI (lt:SI (match_operand:SI 1 "gpc_reg_operand" "r") (match_operand:SI 2 "reg_or_short_operand" "rI")) @@ -5636,7 +5636,7 @@ (set_attr "length" "12")]) (define_insn "" - [(set (match_operand:SI 5 "cc_reg_operand" "=x") + [(set (match_operand:CC 5 "cc_reg_operand" "=x") (compare:CC (plus:SI (lt:SI (match_operand:SI 1 "gpc_reg_operand" "r") (match_operand:SI 2 "reg_or_short_operand" "rI")) |