summaryrefslogtreecommitdiffstatshomepage
path: root/py/compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/compile.c')
-rw-r--r--py/compile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/compile.c b/py/compile.c
index c6b195edeb..b839ac551c 100644
--- a/py/compile.c
+++ b/py/compile.c
@@ -2523,8 +2523,8 @@ void py_compile(py_parse_node_t pn) {
}
//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);