|
From: John R. <jr...@bi...> - 2011-10-09 22:23:03
|
>> I'm going to try forcing 8-alignment by: >> ALIGN = 8 -1; > > That worked. In the face of the exceedingly common usage: struct_A *p = LibVEX_Alloc( sizeof struct_A ); this is an actual bug in LibVEX_Alloc: https://bugs.kde.org/show_bug.cgi?id=283671 because the result must satisfy __alignof__(struct_A). On armv5tel sizeof(void *) is 4, yet __alignof__(Addr64) is 8. -- |