4 union _gc_head *gc_prev;
7 - double dummy; /* force worst-case alignment */
8 + long double dummy; /* force worst-case alignment */
11 extern PyGC_Head *_PyGC_generation0;
12 --- Objects/obmalloc.c
13 +++ Objects/obmalloc.c
18 +#define WITH_VALGRIND
20 -#include <valgrind/valgrind.h>
22 /* If we're using GCC, use __builtin_expect() to reduce overhead of
23 the valgrind checks */
27 if (UNLIKELY(running_on_valgrind == -1))
28 - running_on_valgrind = RUNNING_ON_VALGRIND;
29 + running_on_valgrind = 1;
30 if (UNLIKELY(running_on_valgrind))