diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-24 14:32:40 -0800 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-24 14:32:40 -0800 |
commit | ceb87835fe24873cd8b2f7d1d3d88cb6144e33b8 (patch) | |
tree | be3e0b2da874ab98f98a4fd756ff8534f74b5b6d /py/emitcpy.c | |
parent | 4461970da027ce16b41189f75257239f46a3b087 (diff) | |
parent | f46d87a30d09bfa904c2b9769ea52271abb86b0c (diff) | |
download | micropython-ceb87835fe24873cd8b2f7d1d3d88cb6144e33b8.tar.gz micropython-ceb87835fe24873cd8b2f7d1d3d88cb6144e33b8.zip |
Merge pull request #217 from pfalcon/free-emitter
Add support for freeing code emitter objects at the end of compilation.
Diffstat (limited to 'py/emitcpy.c')
-rw-r--r-- | py/emitcpy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/py/emitcpy.c b/py/emitcpy.c index de2a5784db..6984ebf4bd 100644 --- a/py/emitcpy.c +++ b/py/emitcpy.c @@ -796,6 +796,8 @@ static void emit_cpy_yield_from(emit_t *emit) { } const emit_method_table_t emit_cpython_method_table = { + NULL, + emit_cpy_set_native_types, emit_cpy_start_pass, emit_cpy_end_pass, |