aboutsummaryrefslogtreecommitdiff
path: root/src/ssa
diff options
context:
space:
mode:
Diffstat (limited to 'src/ssa')
-rw-r--r--src/ssa/ssa.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ssa/ssa.c b/src/ssa/ssa.c
index b8aa8b0..f892531 100644
--- a/src/ssa/ssa.c
+++ b/src/ssa/ssa.c
@@ -184,8 +184,9 @@ int ssa_ins_func_start(Ssa *self, u8 num_args, SsaFuncIndex *result) {
}
int ssa_ins_func_end(Ssa *self) {
- SsaInstructionType ins;
+ u8 ins;
ins = SSA_FUNC_END;
+ amal_log_debug("FUNC_END");
return buffer_append(&self->instructions, &ins, 1);
}