mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
GH-127705: Use _PyStackRef
s in the default build. (GH-127875)
This commit is contained in:
parent
7cc99a54b7
commit
2bef8ea8ea
21 changed files with 688 additions and 254 deletions
|
@ -124,11 +124,13 @@ struct _object {
|
|||
PY_INT64_T ob_refcnt_full; /* This field is needed for efficient initialization with Clang on ARM */
|
||||
struct {
|
||||
# if PY_BIG_ENDIAN
|
||||
PY_UINT32_T ob_flags;
|
||||
PY_UINT32_T ob_refcnt;
|
||||
uint16_t ob_flags;
|
||||
uint16_t ob_overflow;
|
||||
uint32_t ob_refcnt;
|
||||
# else
|
||||
PY_UINT32_T ob_refcnt;
|
||||
PY_UINT32_T ob_flags;
|
||||
uint32_t ob_refcnt;
|
||||
uint16_t ob_overflow;
|
||||
uint16_t ob_flags;
|
||||
# endif
|
||||
};
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue