Commit 9164456e by Richard Kenner

(bc_emit_bytecode): Remove decl of unused variable NPUSHES.

From-SVN: r6869
parent fa6bc669
...@@ -865,7 +865,6 @@ bc_emit_bytecode (bytecode) ...@@ -865,7 +865,6 @@ bc_emit_bytecode (bytecode)
enum bytecode_opcode bytecode; enum bytecode_opcode bytecode;
{ {
char byte; char byte;
int npushes = arityvec[(int) bytecode].noutputs - arityvec[(int) bytecode].ninputs;
static int prev_lineno = -1; static int prev_lineno = -1;
byte = bytecode; byte = bytecode;
...@@ -931,8 +930,6 @@ bc_emit_instruction VPROTO((enum bytecode_opcode opcode, ...)) ...@@ -931,8 +930,6 @@ bc_emit_instruction VPROTO((enum bytecode_opcode opcode, ...))
/* Loop literals and emit as bytecode constants */ /* Loop literals and emit as bytecode constants */
for (nliteral = 0; nliteral < arityvec[instruction].nliterals; nliteral++) for (nliteral = 0; nliteral < arityvec[instruction].nliterals; nliteral++)
{ {
HOST_WIDE_INT literal;
switch (arityvec[instruction].literals[nliteral]) switch (arityvec[instruction].literals[nliteral])
{ {
/* This conditional is a kludge, but it's necessary /* This conditional is a kludge, but it's necessary
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment