mn10300.md (andsi3): Fix cut&pasto in 0xfffffffe constant.

* config/mn10300/mn10300.md (andsi3): Fix cut&pasto in 0xfffffffe
constant.

From-SVN: r71718
This commit is contained in:
Alexandre Oliva 2003-09-24 02:56:46 +00:00 committed by Alexandre Oliva
parent 9ab346a144
commit 45adea506f
2 changed files with 7 additions and 2 deletions

View File

@ -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.

View File

@ -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)")