summaryrefslogtreecommitdiffstatshomepage
path: root/py/showbc.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/showbc.c')
-rw-r--r--py/showbc.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/py/showbc.c b/py/showbc.c
index 48d5328c20..91b7572db9 100644
--- a/py/showbc.c
+++ b/py/showbc.c
@@ -404,14 +404,10 @@ void mp_bytecode_print2(const byte *ip, int len) {
printf("STORE_MAP");
break;
- /*
case MP_BC_MAP_ADD:
DECODE_UINT;
- // I think it's guaranteed by the compiler that sp[unum + 1] is a map
- rt_store_map(sp[unum + 1], sp[0], sp[1]);
- sp += 2;
+ printf("MAP_ADD " UINT_FMT, unum);
break;
- */
case MP_BC_BUILD_SET:
DECODE_UINT;