From e7f6e33b0fdcfda5a33c6408c3e490231e446ecd Mon Sep 17 00:00:00 2001 From: Richard Kenner <kenner@gcc.gnu.org> Date: Wed, 25 Jan 1995 14:39:19 -0500 Subject: [PATCH] (print_operand, print_operand_address): Change error message text. From-SVN: r8810 --- gcc/config/mips/mips.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 6bb16532281e..9d9b0ff2eb18 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."); -- GitLab