diff options
author | Mark Shannon <mark@hotpy.org> | 2024-02-20 10:50:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-20 10:50:59 (GMT) |
commit | 626c414995bad1dab51c7222a6f7bf388255eb9e (patch) | |
tree | dd89add10cfb1bb71ca3a2709b10414652d07031 /Python/ceval.c | |
parent | 7b21403ccd16c480812a1e857c0ee2deca592be0 (diff) | |
download | cpython-626c414995bad1dab51c7222a6f7bf388255eb9e.zip cpython-626c414995bad1dab51c7222a6f7bf388255eb9e.tar.gz cpython-626c414995bad1dab51c7222a6f7bf388255eb9e.tar.bz2 |
GH-115457: Support splitting and replication of micro ops. (GH-115558)
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index adccf8f..6f647cf 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1029,7 +1029,7 @@ enter_tier_two: #ifdef Py_DEBUG { fprintf(stderr, "Unknown uop %d, oparg %d, operand %" PRIu64 " @ %d\n", - opcode, next_uop[-1].oparg, next_uop[-1].operand, + next_uop[-1].opcode, next_uop[-1].oparg, next_uop[-1].operand, (int)(next_uop - current_executor->trace - 1)); Py_FatalError("Unknown uop"); } |