Remove unused DPRINTF in ceval.c (GH-129282)

remove unused DPRINTF in ceval.c
This commit is contained in:
Chris Eibl 2025-01-25 11:33:26 +01:00 committed by GitHub
parent cc4f0a2770
commit 8fecb9fa0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1063,13 +1063,6 @@ enter_tier_two:
#undef ENABLE_SPECIALIZATION_FT
#define ENABLE_SPECIALIZATION_FT 0
#ifdef Py_DEBUG
#define DPRINTF(level, ...) \
if (lltrace >= (level)) { printf(__VA_ARGS__); }
#else
#define DPRINTF(level, ...)
#endif
; // dummy statement after a label, before a declaration
uint16_t uopcode;
#ifdef Py_STATS