(bc_emit_bytecode): Remove decl of unused variable NPUSHES.
authorRichard Kenner <kenner@gcc.gnu.org>
Fri, 25 Mar 1994 18:54:16 +0000 (13:54 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Fri, 25 Mar 1994 18:54:16 +0000 (13:54 -0500)
From-SVN: r6869

gcc/bc-emit.c

index 35d117a..f770c1e 100644 (file)
@@ -865,7 +865,6 @@ bc_emit_bytecode (bytecode)
      enum bytecode_opcode bytecode;
 {
   char byte;
-  int npushes = arityvec[(int) bytecode].noutputs - arityvec[(int) bytecode].ninputs;
   static int prev_lineno = -1;
 
   byte = bytecode;
@@ -931,8 +930,6 @@ bc_emit_instruction VPROTO((enum bytecode_opcode opcode, ...))
   /* Loop literals and emit as bytecode constants */
   for (nliteral = 0; nliteral < arityvec[instruction].nliterals; nliteral++)
     {
-      HOST_WIDE_INT literal;
-
       switch (arityvec[instruction].literals[nliteral])
        {
 /* This conditional is a kludge, but it's necessary