summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-05-11 19:25:01 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-05-11 20:51:31 +0300
commit0f570cfccf11b2e2fe76f3e973990896fca9b189 (patch)
tree9d36063884501a69fa70aab49d9236b4d1ffd1f7
parentff30666c69161e30ec5c44446b60042eb932619a (diff)
downloadmicropython-0f570cfccf11b2e2fe76f3e973990896fca9b189.tar.gz
micropython-0f570cfccf11b2e2fe76f3e973990896fca9b189.zip
showbc: Decode MAP_ADD.
-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;