diff options
author | Damien George <damien.p.george@gmail.com> | 2014-05-12 23:11:14 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-05-12 23:11:14 +0100 |
commit | 915197a8f98d46c2e64edcec7c22de3effb92f0a (patch) | |
tree | 8dd094daf9ccdee341e2c863f4a317b8b0123f6a /py/runtime.c | |
parent | 97f9a2813e5909f0025a2e5e746fff2187f29171 (diff) |
py: Remove emit_glue init and deinit. Needed only for debugging.
Debugging output for emit_glue now simplified so that the init and
deinit functions are no longer needed.
Diffstat (limited to 'py/runtime.c')
-rw-r--r-- | py/runtime.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/py/runtime.c b/py/runtime.c index 3cdbd2230..7c89ec4e2 100644 --- a/py/runtime.c +++ b/py/runtime.c @@ -77,8 +77,6 @@ void mp_init(void) { // __debug__ enabled by default mp_set_debug(true); - mp_emit_glue_init(); - // init global module stuff mp_module_init(); @@ -93,7 +91,6 @@ void mp_init(void) { void mp_deinit(void) { //mp_obj_dict_free(&dict_main); mp_module_deinit(); - mp_emit_glue_deinit(); // call port specific deinitialization if any #ifdef MICROPY_PORT_INIT_FUNC |