summaryrefslogtreecommitdiff
path: root/py/compile.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-06 12:58:40 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-06 12:58:40 +0100
commitcdd96dff2c017c952a238989c10f70143a8dd7d3 (patch)
tree40f3bf8b2dec68b14ff7ae66ef667b65d90b6527 /py/compile.c
parent65cad12d388423f7d9b04a5ae3d7c1b5b176a2da (diff)
py: Implement more features in native emitter.
On x64, native emitter now passes 70 of the tests.
Diffstat (limited to 'py/compile.c')
-rw-r--r--py/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/compile.c b/py/compile.c
index 62c07cfd8..f1870bf36 100644
--- a/py/compile.c
+++ b/py/compile.c
@@ -3351,7 +3351,7 @@ mp_obj_t mp_compile(mp_parse_node_t pn, qstr source_file, uint emit_opt, bool is
#else
// return function that executes the outer module
// we can free the unique_code slot because no-one has reference to this unique_code_id anymore
- return mp_make_function_from_id(unique_code_id, true, MP_OBJ_NULL, MP_OBJ_NULL);
+ return mp_make_function_from_id_and_free(unique_code_id, MP_OBJ_NULL, MP_OBJ_NULL);
#endif
}
}