commit | 729f7b42d65c016c9d5f27fb8a8122869f06c129 | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Thu Apr 17 22:10:53 2014 +0100 |
committer | Damien George <damien.p.george@gmail.com> | Thu Apr 17 22:10:53 2014 +0100 |
tree | 8d8d8c2a89ff9011b06650c256a2d5f2458c930c | |
parent | de7c425139c92745280b62f7ebb756def96d072a [diff] [blame] |
py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. mp_obj_t->subscr now does load/store/delete.
diff --git a/py/showbc.c b/py/showbc.c index d755d3c..bf25966 100644 --- a/py/showbc.c +++ b/py/showbc.c
@@ -182,6 +182,10 @@ 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;