diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-03-25 18:54:16 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-03-25 18:54:16 +0000 |
commit | 9dc12ed7b596469477228fb60686a1c332d5ed94 (patch) | |
tree | 1443c5dd12e6cdbb64da5b3582c53d806225c843 | |
parent | 7e15f4f8a6d1f5edf5b9cd7a4c9bf02eb9f2cfab (diff) | |
download | ppe42-gcc-9dc12ed7b596469477228fb60686a1c332d5ed94.tar.gz ppe42-gcc-9dc12ed7b596469477228fb60686a1c332d5ed94.zip |
(bc_emit_bytecode): Remove decl of unused variable NPUSHES.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6869 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/bc-emit.c | 3 |
1 files changed, 0 insertions, 3 deletions
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 |