diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-24 22:42:28 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-24 22:42:28 +0000 |
commit | 41d02b654e5c844f85fbb79283eaebf35af60fbb (patch) | |
tree | 224166f307256d81c08564546634106f7a8b0435 /py/emitpass1.c | |
parent | ceb87835fe24873cd8b2f7d1d3d88cb6144e33b8 (diff) |
py: Improve freeing of emitters in mp_compile.
There can be multiple emitters allocated during compile (eg byte code
and native).
Diffstat (limited to 'py/emitpass1.c')
-rw-r--r-- | py/emitpass1.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/py/emitpass1.c b/py/emitpass1.c index 6a26cd155..38115a51c 100644 --- a/py/emitpass1.c +++ b/py/emitpass1.c @@ -97,8 +97,6 @@ static void emit_pass1_delete_id(emit_t *emit, qstr qstr) { } const emit_method_table_t emit_pass1_method_table = { - emit_pass1_free, - (void*)emit_pass1_dummy, emit_pass1_start_pass, emit_pass1_end_pass, |