diff options
author | Torbjorn Granlund <tege@gnu.org> | 1994-11-07 22:49:32 +0000 |
---|---|---|
committer | Torbjorn Granlund <tege@gnu.org> | 1994-11-07 22:49:32 +0000 |
commit | ad8bd902ce3f2278942387b8a888b8a167deb85e (patch) | |
tree | 51300fd331a24f69cee4126f77216820e370651c /gcc | |
parent | e6ddeaf73e113b83750a4e9229c8b373446eee32 (diff) | |
download | gcc-ad8bd902ce3f2278942387b8a888b8a167deb85e.zip gcc-ad8bd902ce3f2278942387b8a888b8a167deb85e.tar.gz gcc-ad8bd902ce3f2278942387b8a888b8a167deb85e.tar.bz2 |
(DImode load-with-update matcher): Fix typo in MEM mode.
(compare patterns): Fix several typos, SImode => CCmode.
From-SVN: r8398
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 10e0fe9..3a1b6f6 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")) |