Compiler computes labels and max_num_labels.
diff --git a/py/compile.c b/py/compile.c
index c6b195e..b839ac5 100644
--- a/py/compile.c
+++ b/py/compile.c
@@ -2523,8 +2523,8 @@
}
//emit_cpython_new(&comp->emit, &comp->emit_method_table, comp->max_num_labels);
- emit_bc_new(&comp->emit, &comp->emit_method_table, comp->max_num_labels);
- //emit_new_x64(&comp->emit, &comp->emit_method_table, comp->max_num_labels);
+ //emit_bc_new(&comp->emit, &comp->emit_method_table, comp->max_num_labels);
+ emit_x64_new(&comp->emit, &comp->emit_method_table, comp->max_num_labels);
for (scope_t *s = comp->scope_head; s != NULL; s = s->next) {
compile_scope(comp, s, PASS_2);