summaryrefslogtreecommitdiffstatshomepage
path: root/py/showbc.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/showbc.c')
-rw-r--r--py/showbc.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/py/showbc.c b/py/showbc.c
index cb81b88359..c321dfd755 100644
--- a/py/showbc.c
+++ b/py/showbc.c
@@ -208,25 +208,16 @@ const byte *mp_bytecode_print_str(const mp_print_t *print, const byte *ip) {
case MP_BC_LOAD_NAME:
DECODE_QSTR;
mp_printf(print, "LOAD_NAME %s", qstr_str(qst));
- if (MICROPY_OPT_CACHE_MAP_LOOKUP_IN_BYTECODE) {
- mp_printf(print, " (cache=%u)", *ip++);
- }
break;
case MP_BC_LOAD_GLOBAL:
DECODE_QSTR;
mp_printf(print, "LOAD_GLOBAL %s", qstr_str(qst));
- if (MICROPY_OPT_CACHE_MAP_LOOKUP_IN_BYTECODE) {
- mp_printf(print, " (cache=%u)", *ip++);
- }
break;
case MP_BC_LOAD_ATTR:
DECODE_QSTR;
mp_printf(print, "LOAD_ATTR %s", qstr_str(qst));
- if (MICROPY_OPT_CACHE_MAP_LOOKUP_IN_BYTECODE) {
- mp_printf(print, " (cache=%u)", *ip++);
- }
break;
case MP_BC_LOAD_METHOD:
@@ -270,9 +261,6 @@ const byte *mp_bytecode_print_str(const mp_print_t *print, const byte *ip) {
case MP_BC_STORE_ATTR:
DECODE_QSTR;
mp_printf(print, "STORE_ATTR %s", qstr_str(qst));
- if (MICROPY_OPT_CACHE_MAP_LOOKUP_IN_BYTECODE) {
- mp_printf(print, " (cache=%u)", *ip++);
- }
break;
case MP_BC_STORE_SUBSCR: