diff options
author | Damien George <damien.p.george@gmail.com> | 2019-09-02 20:24:01 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-09-26 15:27:10 +1000 |
commit | 5889cf58dbab8eae52bdd0ad592556bd7aff06df (patch) | |
tree | 251fcbb029c564e1c7c9724d80523c9de08737c5 /py/runtime0.h | |
parent | fe4e1fe4b907e24af2ff566bdbc2edc49db28dce (diff) | |
download | micropython-5889cf58dbab8eae52bdd0ad592556bd7aff06df.tar.gz micropython-5889cf58dbab8eae52bdd0ad592556bd7aff06df.zip |
py/bc0: Order opcodes into groups based on their size and format.
Diffstat (limited to 'py/runtime0.h')
-rw-r--r-- | py/runtime0.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/py/runtime0.h b/py/runtime0.h index 3ba089bb37..ef11608598 100644 --- a/py/runtime0.h +++ b/py/runtime0.h @@ -172,13 +172,13 @@ typedef enum { MP_F_BINARY_OP, MP_F_BUILD_TUPLE, MP_F_BUILD_LIST, - MP_F_LIST_APPEND, MP_F_BUILD_MAP, - MP_F_STORE_MAP, #if MICROPY_PY_BUILTINS_SET - MP_F_STORE_SET, MP_F_BUILD_SET, + MP_F_STORE_SET, #endif + MP_F_LIST_APPEND, + MP_F_STORE_MAP, MP_F_MAKE_FUNCTION_FROM_RAW_CODE, MP_F_NATIVE_CALL_FUNCTION_N_KW, MP_F_CALL_METHOD_N_KW, |