aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-12-16 09:27:51 +0000
committerJeff Law <law@gcc.gnu.org>1999-12-16 02:27:51 -0700
commit41adf8980c131b99320448577776c8bfce3f2282 (patch)
tree6fbdd82258fadd07e4b33212c0e6f28fa902e114
parent1f7c249a1a4c661fa2282402a94a75ffffe60649 (diff)
downloadgcc-41adf8980c131b99320448577776c8bfce3f2282.zip
gcc-41adf8980c131b99320448577776c8bfce3f2282.tar.gz
gcc-41adf8980c131b99320448577776c8bfce3f2282.tar.bz2
* h8300.md (HImode preinc peephole): Fix typo.
From-SVN: r30969
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/h8300/h8300.md2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 190810b..acce2bf 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+Thu Dec 16 02:26:11 1999 Jeffrey A Law (law@cygnus.com)
+
+ * h8300.md (HImode preinc peephole): Fix typo.
+
1999-12-15 Jason Merrill <jason@casey.cygnus.com>
* function.c (retrofit_block): Abort if we don't find a suitable insn.
diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md
index 7e49af5..da65193 100644
--- a/gcc/config/h8300/h8300.md
+++ b/gcc/config/h8300/h8300.md
@@ -2292,7 +2292,7 @@
(define_peephole
[(set (match_operand:HI 1 "register_operand" "")
- (plus:HI (match_dup 1) (const_int -1)))
+ (plus:HI (match_dup 1) (const_int -2)))
(set (mem:HI (match_dup 1))
(match_operand:HI 0 "register_operand" ""))]
"REGNO(operands[1]) != REGNO(operands[0])"