aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-03-25 13:54:16 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1994-03-25 13:54:16 -0500
commit9164456e34697ddd233b18cbc71f6d403719689e (patch)
tree1443c5dd12e6cdbb64da5b3582c53d806225c843
parentfa6bc669de986da47de5c2fbcfc58d6eea864dd8 (diff)
downloadgcc-9164456e34697ddd233b18cbc71f6d403719689e.zip
gcc-9164456e34697ddd233b18cbc71f6d403719689e.tar.gz
gcc-9164456e34697ddd233b18cbc71f6d403719689e.tar.bz2
(bc_emit_bytecode): Remove decl of unused variable NPUSHES.
From-SVN: r6869
-rw-r--r--gcc/bc-emit.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/bc-emit.c b/gcc/bc-emit.c
index 35d117a..f770c1e 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