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/vmentrytable.h | 1 + 1 file changed, 1 insertion(+) (limited to 'py/vmentrytable.h') diff --git a/py/vmentrytable.h b/py/vmentrytable.h index 27b5638df..2e1d1fb04 100644 --- a/py/vmentrytable.h +++ b/py/vmentrytable.h @@ -21,6 +21,7 @@ static void* entry_table[256] = { [MP_BC_LOAD_ATTR] = &&entry_MP_BC_LOAD_ATTR, [MP_BC_LOAD_METHOD] = &&entry_MP_BC_LOAD_METHOD, [MP_BC_LOAD_BUILD_CLASS] = &&entry_MP_BC_LOAD_BUILD_CLASS, + [MP_BC_LOAD_SUBSCR] = &&entry_MP_BC_LOAD_SUBSCR, [MP_BC_STORE_FAST_0] = &&entry_MP_BC_STORE_FAST_0, [MP_BC_STORE_FAST_1] = &&entry_MP_BC_STORE_FAST_1, [MP_BC_STORE_FAST_2] = &&entry_MP_BC_STORE_FAST_2, -- cgit v1.2.3