diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-01-15 21:29:48 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-01-15 21:29:48 +0000 |
commit | ec4c9f0c9c76220bbcc11143bdf64920af9e2306 (patch) | |
tree | 3ed3cdad3c795d6a6fc766e82e799ebc659f6001 /gcc/genoutput.c | |
parent | b50e273dc98b0b1c0196f51414958855c78487df (diff) | |
download | gcc-ec4c9f0c9c76220bbcc11143bdf64920af9e2306.tar.gz |
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@189 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genoutput.c')
-rw-r--r-- | gcc/genoutput.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/genoutput.c b/gcc/genoutput.c index 5be190d9a34..a3c7979d01b 100644 --- a/gcc/genoutput.c +++ b/gcc/genoutput.c @@ -1,5 +1,5 @@ /* Generate code from to output assembler insns as recognized from rtl. - Copyright (C) 1987-1991 Free Software Foundation, Inc. + Copyright (C) 1987, 1988, 1991 Free Software Foundation, Inc. This file is part of GNU CC. @@ -424,12 +424,12 @@ scan_operands (part, this_address_p, this_strict_low) max_opno = opno; if (max_opno >= MAX_MAX_OPERANDS) { - error ("Too many operands (%d) in instruction pattern %d.\n", + error ("Too many operands (%d) in definition %d.\n", max_opno + 1, next_index_number); return; } if (seen[opno]) - error ("Insn pattern %d specified operand number %d more than once.\n", + error ("Definition %d specified operand number %d more than once.\n", next_index_number, opno); seen[opno] = 1; modes[opno] = GET_MODE (part); @@ -450,12 +450,12 @@ scan_operands (part, this_address_p, this_strict_low) max_opno = opno; if (max_opno >= MAX_MAX_OPERANDS) { - error ("Too many operands (%d) in instruction pattern %d.\n", + error ("Too many operands (%d) in definition %d.\n", max_opno + 1, next_index_number); return; } if (seen[opno]) - error ("Insn pattern %d specified operand number %d more than once.\n", + error ("Definition %d specified operand number %d more than once.\n", next_index_number, opno); seen[opno] = 1; modes[opno] = GET_MODE (part); @@ -477,12 +477,12 @@ scan_operands (part, this_address_p, this_strict_low) max_opno = opno; if (max_opno >= MAX_MAX_OPERANDS) { - error ("Too many operands (%d) in instruction pattern %d.\n", + error ("Too many operands (%d) in definition %d.\n", max_opno + 1, next_index_number); return; } if (seen[opno]) - error ("Insn pattern %d specified operand number %d more than once.\n", + error ("Definition %d specified operand number %d more than once.\n", next_index_number, opno); seen[opno] = 1; modes[opno] = GET_MODE (part); |