summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--py/runtime0.h6
-rw-r--r--tests/cmdline/cmd_showbc.py.exp2
2 files changed, 6 insertions, 2 deletions
diff --git a/py/runtime0.h b/py/runtime0.h
index 074dac1e4..fd497a6d1 100644
--- a/py/runtime0.h
+++ b/py/runtime0.h
@@ -84,7 +84,6 @@ typedef enum {
MP_BINARY_OP_MODULO,
MP_BINARY_OP_POWER,
- MP_BINARY_OP_DIVMOD, // not emitted by the compiler but supported by the runtime
MP_BINARY_OP_INPLACE_OR,
MP_BINARY_OP_INPLACE_XOR,
@@ -99,6 +98,11 @@ typedef enum {
MP_BINARY_OP_INPLACE_TRUE_DIVIDE,
MP_BINARY_OP_INPLACE_MODULO,
MP_BINARY_OP_INPLACE_POWER,
+
+ // Operations below this line don't appear in bytecode, they
+ // just identify special methods.
+
+ MP_BINARY_OP_DIVMOD, // not emitted by the compiler but supported by the runtime
} mp_binary_op_t;
typedef enum {
diff --git a/tests/cmdline/cmd_showbc.py.exp b/tests/cmdline/cmd_showbc.py.exp
index 2dd927f74..0919aac53 100644
--- a/tests/cmdline/cmd_showbc.py.exp
+++ b/tests/cmdline/cmd_showbc.py.exp
@@ -132,7 +132,7 @@ Raw bytecode (code_info_size=\\d\+, bytecode_size=\\d\+):
\\d\+ DUP_TOP_TWO
\\d\+ LOAD_SUBSCR
\\d\+ LOAD_FAST 12
-\\d\+ BINARY_OP 29 __iadd__
+\\d\+ BINARY_OP 28 __iadd__
\\d\+ ROT_THREE
\\d\+ STORE_SUBSCR
\\d\+ LOAD_DEREF 14