diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-27 19:12:05 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-27 19:12:05 +0100 |
commit | 968bf34c4c7c457816eb3a9d8358519ba1d3a65f (patch) | |
tree | b186c3207777c6f4553589ad19a3e2dc385aeb52 /py/showbc.c | |
parent | db128919187d86962f7ba46ddb072c1dfe53eb7e (diff) | |
download | micropython-968bf34c4c7c457816eb3a9d8358519ba1d3a65f.tar.gz micropython-968bf34c4c7c457816eb3a9d8358519ba1d3a65f.zip |
py: Remove unnecessary LOAD_CONST_ID bytecode.
It's the same as LOAD_CONST_STR.
Diffstat (limited to 'py/showbc.c')
-rw-r--r-- | py/showbc.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/py/showbc.c b/py/showbc.c index 17cb2eadd6..e3032e8d98 100644 --- a/py/showbc.c +++ b/py/showbc.c @@ -123,11 +123,6 @@ void mp_byte_code_print2(const byte *ip, int len) { printf("LOAD_CONST_DEC %s", qstr_str(qstr)); break; - case MP_BC_LOAD_CONST_ID: - DECODE_QSTR; - printf("LOAD_CONST_ID '%s'", qstr_str(qstr)); - break; - case MP_BC_LOAD_CONST_BYTES: DECODE_QSTR; printf("LOAD_CONST_BYTES %s", qstr_str(qstr)); |