aboutsummaryrefslogtreecommitdiff
path: root/gcc/genoutput.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1992-01-15 16:29:48 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1992-01-15 16:29:48 -0500
commitde6a431bee95a409f848f3f2276bf026c4e7272a (patch)
tree3ed3cdad3c795d6a6fc766e82e799ebc659f6001 /gcc/genoutput.c
parente1c8bbf44b25e3a811a415a9294ea11bd4a4c3f6 (diff)
downloadgcc-de6a431bee95a409f848f3f2276bf026c4e7272a.zip
gcc-de6a431bee95a409f848f3f2276bf026c4e7272a.tar.gz
gcc-de6a431bee95a409f848f3f2276bf026c4e7272a.tar.bz2
*** empty log message ***
From-SVN: r189
Diffstat (limited to 'gcc/genoutput.c')
-rw-r--r--gcc/genoutput.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/genoutput.c b/gcc/genoutput.c
index 5be190d..a3c7979 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);