Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Double max trace length to 256
  • Loading branch information
gvanrossum committed Nov 17, 2023
commit 31d815f29d670bdf8696a5917ecfd28d33a7ee2c
2 changes: 1 addition & 1 deletion Include/internal/pycore_uops.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ extern "C" {

#include "pycore_frame.h" // _PyInterpreterFrame

#define _Py_UOP_MAX_TRACE_LENGTH 128
#define _Py_UOP_MAX_TRACE_LENGTH 256

typedef struct {
uint16_t opcode;
Expand Down