diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-24 02:56:46 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-24 02:56:46 +0000 |
commit | 15dc0a00f4ee4466c50189e1e98498855fc3d7e5 (patch) | |
tree | 05f2372fe876650b9391382658acb72bf9c15313 /gcc/config/mn10300 | |
parent | 3598ba3d68e9287e8a86822239e16986f63824bf (diff) | |
download | ppe42-gcc-15dc0a00f4ee4466c50189e1e98498855fc3d7e5.tar.gz ppe42-gcc-15dc0a00f4ee4466c50189e1e98498855fc3d7e5.zip |
* config/mn10300/mn10300.md (andsi3): Fix cut&pasto in 0xfffffffe
constant.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71718 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mn10300')
-rw-r--r-- | gcc/config/mn10300/mn10300.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mn10300/mn10300.md b/gcc/config/mn10300/mn10300.md index 6f4517149c4..e2bb356049f 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)") |