diff options
author | Jim Wilson <wilson@cygnus.com> | 1998-08-13 20:16:20 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1998-08-13 13:16:20 -0700 |
commit | 988ee12c8aed637353046f84fc90a9240d2f8b17 (patch) | |
tree | 3d157dfb8ce1d7140a1e94f04ec42384870e64ec | |
parent | 2ce3c6c615fa735693e1de39e9777919ba4fd106 (diff) | |
download | gcc-988ee12c8aed637353046f84fc90a9240d2f8b17.zip gcc-988ee12c8aed637353046f84fc90a9240d2f8b17.tar.gz gcc-988ee12c8aed637353046f84fc90a9240d2f8b17.tar.bz2 |
Fix SET operand mode mismatch detected by John Carr's patch.
* mips/mips.md (movhi_internal2+2): Fix typo mem:SI -> mem:HI.
From-SVN: r21704
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/mips/mips.md | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index eee41bb..c78c4d6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Thu Aug 13 20:14:40 1998 Jim Wilson <wilson@cygnus.com> + + * mips/mips.md (movhi_internal2+2): Fix typo mem:SI -> mem:HI. + Thu Aug 13 17:08:11 1998 Jason Merrill <jason@yorick.cygnus.com> * tree.h: De-conditionalize init_priority code. diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 7408854..93edeee 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -5439,7 +5439,7 @@ move\\t%0,%z4\\n\\ (define_split [(set (match_operand:HI 0 "register_operand" "") - (mem:SI (plus:SI (match_dup 0) + (mem:HI (plus:SI (match_dup 0) (match_operand:SI 1 "const_int_operand" ""))))] "TARGET_MIPS16 && reload_completed && GET_CODE (operands[0]) == REG |