From: Richard Kenner Date: Fri, 25 Mar 1994 18:54:16 +0000 (-0500) Subject: (bc_emit_bytecode): Remove decl of unused variable NPUSHES. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9164456e34697ddd233b18cbc71f6d403719689e;p=gcc.git (bc_emit_bytecode): Remove decl of unused variable NPUSHES. From-SVN: r6869 --- diff --git a/gcc/bc-emit.c b/gcc/bc-emit.c index 35d117af7c0..f770c1e9bcf 100644 --- a/gcc/bc-emit.c +++ b/gcc/bc-emit.c @@ -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