aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2003-09-24 02:56:46 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2003-09-24 02:56:46 +0000
commit45adea506fa2055679e5d6fff7d154b730d3fa7f (patch)
tree05f2372fe876650b9391382658acb72bf9c15313
parent9ab346a1448d75b579a7376bb795fa4fd51905ce (diff)
downloadgcc-45adea506fa2055679e5d6fff7d154b730d3fa7f.zip
gcc-45adea506fa2055679e5d6fff7d154b730d3fa7f.tar.gz
gcc-45adea506fa2055679e5d6fff7d154b730d3fa7f.tar.bz2
mn10300.md (andsi3): Fix cut&pasto in 0xfffffffe constant.
* config/mn10300/mn10300.md (andsi3): Fix cut&pasto in 0xfffffffe constant. From-SVN: r71718
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/mn10300/mn10300.md4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7704e9f..235bf62 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2003-09-23 Alexandre Oliva <aoliva@redhat.com>
+
+ * config/mn10300/mn10300.md (andsi3): Fix cut&pasto in 0xfffffffe
+ constant.
+
2003-09-23 Nathanael Nerode <neroden@gcc.gnu.org>
* config.gcc: Move vax-*-vms* unsupported notice up with the rest.
diff --git a/gcc/config/mn10300/mn10300.md b/gcc/config/mn10300/mn10300.md
index 6f45171..e2bb356 100644
--- a/gcc/config/mn10300/mn10300.md
+++ b/gcc/config/mn10300/mn10300.md
@@ -1234,7 +1234,7 @@
|| INTVAL (operands[2]) == 0x3fffffff
|| INTVAL (operands[2]) == 0x1fffffff
|| INTVAL (operands[2]) == 0x0fffffff
- || INTVAL (operands[2]) == 0x0ffffffe
+ || INTVAL (operands[2]) == 0xfffffffe
|| INTVAL (operands[2]) == 0xfffffffc
|| INTVAL (operands[2]) == 0xfffffff8
|| INTVAL (operands[2]) == 0xfffffff0)")
@@ -1285,7 +1285,7 @@
|| INTVAL (operands[2]) == 0x3fffffff
|| INTVAL (operands[2]) == 0x1fffffff
|| INTVAL (operands[2]) == 0x0fffffff
- || INTVAL (operands[2]) == 0x0ffffffe
+ || INTVAL (operands[2]) == 0xfffffffe
|| INTVAL (operands[2]) == 0xfffffffc
|| INTVAL (operands[2]) == 0xfffffff8
|| INTVAL (operands[2]) == 0xfffffff0)")