summaryrefslogtreecommitdiffstats
path: root/compile.c
diff options
context:
space:
mode:
authorStephen Dolan <mu@netsoc.tcd.ie>2012-09-18 23:46:23 +0100
committerStephen Dolan <mu@netsoc.tcd.ie>2012-09-18 23:46:23 +0100
commit71ab537ee924e0490cde43da6e678963618deea0 (patch)
tree8dd96d633a02aa6af5b054676953738de094037a /compile.c
parent134b062be7cf2b62d0e69772836e6312fd9e60d5 (diff)
Initialise some variables to keep gcc happy.
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index 719a2706..fe50c70a 100644
--- a/compile.c
+++ b/compile.c
@@ -527,7 +527,7 @@ static int compile(struct locfile* locations, struct bytecode* bc, block b) {
int nargs = curr->imm.intval;
assert(nargs > 0);
code[pos++] = (uint16_t)nargs;
- int desired_params;
+ int desired_params = 0;
for (int i=0; i<nargs; i++) {
curr = curr->next;
assert(curr && opcode_describe(curr->op)->flags & OP_IS_CALL_PSEUDO);