diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7704e9f8e822..235bf620e799 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-09-23 Alexandre Oliva + + * config/mn10300/mn10300.md (andsi3): Fix cut&pasto in 0xfffffffe + constant. + 2003-09-23 Nathanael Nerode * 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 6f4517149c4f..e2bb356049f1 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)")