diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-02-11 17:41:33 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-02-11 17:41:33 +0000 |
commit | a05566a31a3350ff9301fa4ff32f75832f5ffab3 (patch) | |
tree | bd0d13400c99af4652a1758b2223a0ba8c29650a | |
parent | 68441a3b53f36f37fe060d019d964bf35be99e5e (diff) | |
download | gcc-a05566a31a3350ff9301fa4ff32f75832f5ffab3.zip gcc-a05566a31a3350ff9301fa4ff32f75832f5ffab3.tar.gz gcc-a05566a31a3350ff9301fa4ff32f75832f5ffab3.tar.bz2 |
* config/h8300/h8300.md (a peephole2): Fix a typo.
From-SVN: r62701
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.md | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 92496afff..86973f6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-02-11 Kazu Hirata <kazu@cs.umass.edu> + + * config/h8300/h8300.md (a peephole2): Fix a typo. + 2003-02-11 Richard Earnshaw <rearnsha@arm.com> * arm.mc (return_address_mask): Use CC_REGNUM for the condition code diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md index a95957e..39e8bce 100644 --- a/gcc/config/h8300/h8300.md +++ b/gcc/config/h8300/h8300.md @@ -3498,7 +3498,7 @@ || INTVAL (operands[1]) == 7 || INTVAL (operands[1]) == 15 || INTVAL (operands[1]) == 31 - || INTVAL (operands[1]) == 64 + || INTVAL (operands[1]) == 63 || INTVAL (operands[1]) == 127 || INTVAL (operands[1]) == 65535)" [(set (match_dup 0) |