diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-01-25 14:39:19 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-01-25 14:39:19 -0500 |
commit | e7f6e33b0fdcfda5a33c6408c3e490231e446ecd (patch) | |
tree | 7f8341dc41b39d1bf72724bdeea9b56c5126173c /gcc | |
parent | 01554f00ebd72e49eb7a0dca8ed47dc3def00dfc (diff) | |
download | gcc-e7f6e33b0fdcfda5a33c6408c3e490231e446ecd.zip gcc-e7f6e33b0fdcfda5a33c6408c3e490231e446ecd.tar.gz gcc-e7f6e33b0fdcfda5a33c6408c3e490231e446ecd.tar.bz2 |
(print_operand, print_operand_address): Change error message text.
From-SVN: r8810
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/mips/mips.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 6bb1653..9d9b0ff 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -3606,7 +3606,7 @@ print_operand (file, op, letter) case LEU: fputs ("leu", file); break; default: - abort_with_insn (op, "PRINT_OPERAND, illegal insn for %%C"); + abort_with_insn (op, "PRINT_OPERAND, invalid insn for %%C"); } else if (letter == 'N') @@ -3624,7 +3624,7 @@ print_operand (file, op, letter) case LEU: fputs ("gtu", file); break; default: - abort_with_insn (op, "PRINT_OPERAND, illegal insn for %%N"); + abort_with_insn (op, "PRINT_OPERAND, invalid insn for %%N"); } else if (letter == 'S') @@ -3704,7 +3704,7 @@ print_operand_address (file, addr) switch (GET_CODE (addr)) { default: - abort_with_insn (addr, "PRINT_OPERAND_ADDRESS, illegal insn #1"); + abort_with_insn (addr, "PRINT_OPERAND_ADDRESS, invalid insn #1"); break; case REG: @@ -3742,7 +3742,7 @@ print_operand_address (file, addr) abort_with_insn (addr, "PRINT_OPERAND_ADDRESS, no regs"); if (!CONSTANT_P (offset)) - abort_with_insn (addr, "PRINT_OPERAND_ADDRESS, illegal insn #2"); + abort_with_insn (addr, "PRINT_OPERAND_ADDRESS, invalid insn #2"); if (REGNO (reg) == ARG_POINTER_REGNUM) abort_with_insn (addr, "Arg pointer not eliminated."); |