diff options
author | Damien George <damien.p.george@gmail.com> | 2015-06-13 22:00:10 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-06-13 23:36:30 +0100 |
commit | c5029bcbf37fd1a3fb145d9fa9e4a5094478f17b (patch) | |
tree | 3f5f37bbf827d9b1ca302a5492e6522090998076 /py/vmentrytable.h | |
parent | 6f4952004207a249a437dc822c5252422f63cc69 (diff) | |
download | micropython-c5029bcbf37fd1a3fb145d9fa9e4a5094478f17b.tar.gz micropython-c5029bcbf37fd1a3fb145d9fa9e4a5094478f17b.zip |
py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin.
Diffstat (limited to 'py/vmentrytable.h')
-rw-r--r-- | py/vmentrytable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/vmentrytable.h b/py/vmentrytable.h index 7c8f81bf30..413914b6ef 100644 --- a/py/vmentrytable.h +++ b/py/vmentrytable.h @@ -112,7 +112,7 @@ static void* entry_table[256] = { [MP_BC_LOAD_FAST_MULTI ... MP_BC_LOAD_FAST_MULTI + 15] = &&entry_MP_BC_LOAD_FAST_MULTI, [MP_BC_STORE_FAST_MULTI ... MP_BC_STORE_FAST_MULTI + 15] = &&entry_MP_BC_STORE_FAST_MULTI, [MP_BC_UNARY_OP_MULTI ... MP_BC_UNARY_OP_MULTI + 5] = &&entry_MP_BC_UNARY_OP_MULTI, - [MP_BC_BINARY_OP_MULTI ... MP_BC_BINARY_OP_MULTI + 34] = &&entry_MP_BC_BINARY_OP_MULTI, + [MP_BC_BINARY_OP_MULTI ... MP_BC_BINARY_OP_MULTI + 35] = &&entry_MP_BC_BINARY_OP_MULTI, }; #if __clang__ |