We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe3c1af commit cd868b9Copy full SHA for cd868b9
1 file changed
Include/internal/pycore_tstate.h
@@ -104,7 +104,10 @@ typedef struct _PyThreadStateImpl {
104
#if defined(Py_REF_DEBUG) && defined(Py_GIL_DISABLED)
105
Py_ssize_t reftotal; // this thread's total refcount operations
106
#endif
107
- struct _PyUOpInstruction buffer[1200];
+
108
+#ifdef _Py_TIER2
109
+ struct _PyUOpInstruction buffer[UOP_MAX_TRACE_LENGTH];
110
+#endif
111
112
} _PyThreadStateImpl;
113
0 commit comments