File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -748,17 +748,18 @@ struct _Py_unique_id_pool {
748
748
The PyInterpreterState typedef is in Include/pytypedefs.h.
749
749
*/
750
750
struct _is {
751
- /* This structure is carefully allocated so that it's correctly aligned
752
- * to avoid undefined behaviors during LOAD and STORE. The '_malloced'
753
- * field stores the allocated pointer address that will later be freed.
754
- */
755
- uintptr_t _malloced ;
756
751
757
752
/* This struct contains the eval_breaker,
758
753
* which is by far the hottest field in this struct
759
754
* and should be placed at the beginning. */
760
755
struct _ceval_state ceval ;
761
756
757
+ /* This structure is carefully allocated so that it's correctly aligned
758
+ * to avoid undefined behaviors during LOAD and STORE. The '_malloced'
759
+ * field stores the allocated pointer address that will later be freed.
760
+ */
761
+ void * _malloced ;
762
+
762
763
PyInterpreterState * next ;
763
764
764
765
int64_t id ;
You can’t perform that action at this time.
0 commit comments