diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-11-21 16:34:57 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-11-21 16:54:15 +0200 |
commit | 295ea12411ca12a41947de3113febb29e469ac4c (patch) | |
tree | 7d2ee9ba2e7b2ccdeb07d2865fa6413f1c388a2b /unix | |
parent | 72bd172b305fc7e3c8d3a111e0453f4420d1a10b (diff) | |
download | micropython-295ea12411ca12a41947de3113febb29e469ac4c.tar.gz micropython-295ea12411ca12a41947de3113febb29e469ac4c.zip |
py/emitglue: Host definition of mp_verbose_flag.
This may not seem like the ideal place, but is actually the only place
in py/ where it gets referenced, so is just right.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/unix/main.c b/unix/main.c index 26b7a13683..26618af3f7 100644 --- a/unix/main.c +++ b/unix/main.c @@ -51,7 +51,6 @@ // Command line options, with their defaults STATIC bool compile_only = false; STATIC uint emit_opt = MP_EMIT_OPT_NONE; -mp_uint_t mp_verbose_flag = 0; #if MICROPY_ENABLE_GC // Heap size of GC heap (if enabled) |