summaryrefslogtreecommitdiffstatshomepage
path: root/stm/pyexec.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-06 11:48:15 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-06 11:48:15 +0100
commit65cad12d388423f7d9b04a5ae3d7c1b5b176a2da (patch)
treef88eeb76a6ccb42931ab7b887507e41c695887e3 /stm/pyexec.c
parentdeed087e2c083821f22a849fdb4de62004bd010f (diff)
downloadmicropython-65cad12d388423f7d9b04a5ae3d7c1b5b176a2da.tar.gz
micropython-65cad12d388423f7d9b04a5ae3d7c1b5b176a2da.zip
py: Add option to compiler to specify default code emitter.
Also add command line option to unix port to select emitter.
Diffstat (limited to 'stm/pyexec.c')
-rw-r--r--stm/pyexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stm/pyexec.c b/stm/pyexec.c
index 7b4da42b0b..f3dfd70aab 100644
--- a/stm/pyexec.c
+++ b/stm/pyexec.c
@@ -142,7 +142,7 @@ bool parse_compile_execute(mp_lexer_t *lex, mp_parse_input_kind_t input_kind, bo
mp_lexer_free(lex);
- mp_obj_t module_fun = mp_compile(pn, source_name, is_repl);
+ mp_obj_t module_fun = mp_compile(pn, source_name, MP_EMIT_OPT_NONE, is_repl);
mp_parse_node_free(pn);
if (module_fun == mp_const_none) {