diff options
author | Damien <damien.p.george@gmail.com> | 2013-10-05 13:44:41 +0100 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-10-05 13:44:41 +0100 |
commit | 054848a1b8aa7e52f3c70e86cc4dc56b565ea830 (patch) | |
tree | 254e394f59d095f9ee5384d0ffe9b36fabc8ecaa /py/compile.c | |
parent | b05d707b2329a9534121e09e26eb9f8fef1917d3 (diff) |
Compiler computes labels and max_num_labels.
Diffstat (limited to 'py/compile.c')
-rw-r--r-- | py/compile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/compile.c b/py/compile.c index c6b195ede..b839ac551 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); |