Skip to content

Commit 0f570cf

Browse files
committed
showbc: Decode MAP_ADD.
1 parent ff30666 commit 0f570cf

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

py/showbc.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -404,14 +404,10 @@ void mp_bytecode_print2(const byte *ip, int len) {
404404
printf("STORE_MAP");
405405
break;
406406

407-
/*
408407
case MP_BC_MAP_ADD:
409408
DECODE_UINT;
410-
// I think it's guaranteed by the compiler that sp[unum + 1] is a map
411-
rt_store_map(sp[unum + 1], sp[0], sp[1]);
412-
sp += 2;
409+
printf("MAP_ADD " UINT_FMT, unum);
413410
break;
414-
*/
415411

416412
case MP_BC_BUILD_SET:
417413
DECODE_UINT;

0 commit comments

Comments
 (0)