aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler.h')
-rw-r--r--src/compiler.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler.h b/src/compiler.h
index d4b9e72..fe36ecf 100644
--- a/src/compiler.h
+++ b/src/compiler.h
@@ -405,6 +405,7 @@ compile_proc_call(Object *obj) {
405 405
406void 406void
407compile_if(Object *obj) { 407compile_if(Object *obj) {
408 context_printf(" ;; --> compile_if\n");
408 char *lab_false = generate_label("BDLL"); 409 char *lab_false = generate_label("BDLL");
409 compile_object(obj->condition); 410 compile_object(obj->condition);
410 context_printf(" pop rax\n"); 411 context_printf(" pop rax\n");
@@ -420,6 +421,7 @@ compile_if(Object *obj) {
420 } else { 421 } else {
421 context_printf("%s:\n", lab_false); 422 context_printf("%s:\n", lab_false);
422 } 423 }
424 context_printf(" ;; <-- compile_if\n");
423} 425}
424 426
425void 427void