From 3f51e08f363a6994497dc1bf53d524863ffe0dbd Mon Sep 17 00:00:00 2001 From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Tue, 21 Jan 2025 19:52:30 +0800 Subject: [PATCH] Address review --- Include/internal/pycore_frame.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Include/internal/pycore_frame.h b/Include/internal/pycore_frame.h index 8d9ba22ec9ef37..191abf8b958302 100644 --- a/Include/internal/pycore_frame.h +++ b/Include/internal/pycore_frame.h @@ -77,10 +77,10 @@ typedef struct _PyInterpreterFrame { uint16_t return_offset; /* Only relevant during a function call */ char owner; #ifdef Py_DEBUG - char visited:4; - char lltrace:4; + char visited:1; + uint8_t lltrace:7; #else - char visited; + uint8_t visited; #endif /* Locals and stack */ _PyStackRef localsplus[1];