diff options
author | Damien George <damien.p.george@gmail.com> | 2017-10-03 23:34:28 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-10-05 10:49:44 +1100 |
commit | 0864a6957fe4717c3ec40ceeb373b19614a18434 (patch) | |
tree | efe1af227822af824aa82e64195ae7501ab20de3 /py/bc0.h | |
parent | f869d6b2e339c04469c6c9ea3fb2fabd7bbb2d8c (diff) |
py: Clean up unary and binary enum list to keep groups together.
2 non-bytecode binary ops (NOT_IN and IN_NOT) are moved out of the
bytecode group, so this change will change the bytecode format.
Diffstat (limited to 'py/bc0.h')
-rw-r--r-- | py/bc0.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -113,7 +113,7 @@ #define MP_BC_LOAD_CONST_SMALL_INT_MULTI (0x70) // + N(64) #define MP_BC_LOAD_FAST_MULTI (0xb0) // + N(16) #define MP_BC_STORE_FAST_MULTI (0xc0) // + N(16) -#define MP_BC_UNARY_OP_MULTI (0xd0) // + op(<MP_UNARY_OP_NON_BYTECODE) -#define MP_BC_BINARY_OP_MULTI (0xd7) // + op(36) +#define MP_BC_UNARY_OP_MULTI (0xd0) // + op(<MP_UNARY_OP_NUM_BYTECODE) +#define MP_BC_BINARY_OP_MULTI (0xd7) // + op(<MP_BINARY_OP_NUM_BYTECODE) #endif // MICROPY_INCLUDED_PY_BC0_H |