summaryrefslogtreecommitdiffstatshomepage
path: root/py/emitcpy.c
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-01-24 16:20:11 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-01-24 16:31:20 +0200
commitf46d87a30d09bfa904c2b9769ea52271abb86b0c (patch)
treef5fb8aa053f3e3e00843b990e0d49da56d1f2dbc /py/emitcpy.c
parent2b2cb7b7f4f467b67082f79053118df78f48e66e (diff)
downloadmicropython-f46d87a30d09bfa904c2b9769ea52271abb86b0c.tar.gz
micropython-f46d87a30d09bfa904c2b9769ea52271abb86b0c.zip
Add support for freeing code emitter objects at the end of compilation.
Diffstat (limited to 'py/emitcpy.c')
-rw-r--r--py/emitcpy.c2
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,