From 729f7b42d65c016c9d5f27fb8a8122869f06c129 Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 17 Apr 2014 22:10:53 +0100 Subject: py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. mp_obj_t->subscr now does load/store/delete. --- py/showbc.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'py/showbc.c') diff --git a/py/showbc.c b/py/showbc.c index d755d3c96..bf25966e9 100644 --- a/py/showbc.c +++ b/py/showbc.c @@ -182,6 +182,10 @@ void mp_byte_code_print(const byte *ip, int len) { printf("LOAD_BUILD_CLASS"); break; + case MP_BC_LOAD_SUBSCR: + printf("LOAD_SUBSCR"); + break; + case MP_BC_STORE_FAST_0: printf("STORE_FAST_0"); break; -- cgit v1.2.3