From 681485ff25db7336925d88552111641b89035262 Mon Sep 17 00:00:00 2001 From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Sun, 19 Oct 2025 16:06:03 +0100 Subject: [PATCH] Increase uop length to compensate --- Include/internal/pycore_uop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/internal/pycore_uop.h b/Include/internal/pycore_uop.h index 6effe1291542..86bea31204ca 100644 --- a/Include/internal/pycore_uop.h +++ b/Include/internal/pycore_uop.h @@ -36,7 +36,7 @@ typedef struct _PyUOpInstruction{ } _PyUOpInstruction; // This is the length of the trace we translate initially. -#define UOP_MAX_TRACE_LENGTH 1200 +#define UOP_MAX_TRACE_LENGTH 1400 #define UOP_BUFFER_SIZE (UOP_MAX_TRACE_LENGTH * sizeof(_PyUOpInstruction)) /* Bloom filter with m = 256 -- 2.47.3