summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index e19860d..65b6f24 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -2817,10 +2817,10 @@ _PyUopExecute(_PyExecutorObject *executor, _PyInterpreterFrame *frame, PyObject
oparg = (int)operand;
#ifdef LLTRACE
if (lltrace >= 3) {
- const char *opname = opcode < 256 ? _PyOpcode_OpName[opcode] : "";
+ const char *opname = opcode < 256 ? _PyOpcode_OpName[opcode] : _PyOpcode_uop_name[opcode];
int stack_level = (int)(stack_pointer - _PyFrame_Stackbase(frame));
- fprintf(stderr, " uop %s %d, operand %" PRIu64 ", stack_level %d\n",
- opname, opcode, operand, stack_level);
+ fprintf(stderr, " uop %s, operand %" PRIu64 ", stack_level %d\n",
+ opname, operand, stack_level);
}
#endif
pc++;