diff options
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 42100393f60..584b64a6e63 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -992,9 +992,7 @@ enter_tier_two: OPT_STAT_INC(traces_executed); _PyUOpInstruction *next_uop = current_executor->trace; -#ifdef Py_DEBUG - uint64_t operand; // Used by several DPRINTF() calls -#endif + uint64_t operand; #ifdef Py_STATS uint64_t trace_uop_execution_counter = 0; #endif @@ -1002,9 +1000,7 @@ enter_tier_two: for (;;) { opcode = next_uop->opcode; oparg = next_uop->oparg; -#ifdef Py_DEBUG operand = next_uop->operand; -#endif DPRINTF(3, "%4d: uop %s, oparg %d, operand %" PRIu64 ", stack_level %d\n", (int)(next_uop - current_executor->trace), |