mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
GH-132508: Use tagged integers on the evaluation stack for the last instruction offset (GH-132545)
This commit is contained in:
parent
caee16f052
commit
ccf1b0b1c1
14 changed files with 129 additions and 60 deletions
|
@ -684,7 +684,7 @@ init_interpreter(PyInterpreterState *interp,
|
|||
interp->dtoa = (struct _dtoa_state)_dtoa_state_INIT(interp);
|
||||
}
|
||||
#if !defined(Py_GIL_DISABLED) && defined(Py_STACKREF_DEBUG)
|
||||
interp->next_stackref = 1;
|
||||
interp->next_stackref = INITIAL_STACKREF_INDEX;
|
||||
_Py_hashtable_allocator_t alloc = {
|
||||
.malloc = malloc,
|
||||
.free = free,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue