Skip to content

Commit d1a68ab

Browse files
Reduce DATA_ALIGN to 8 bytes
1 parent 620cd4f commit d1a68ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/jit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ void patch_x86_64_trampoline(unsigned char *location, int ordinal, jit_state *st
455455
// LLVM 20 on macOS x86_64 debug builds: GOT entries may exceed ±2GB PC-relative
456456
// range.
457457
#define TRAMPOLINE_SIZE 16 // 14 bytes + 2 bytes padding for alignment
458-
#define DATA_ALIGN 16
458+
#define DATA_ALIGN 8
459459
#else
460460
#define TRAMPOLINE_SIZE 0
461461
#define DATA_ALIGN 1

0 commit comments

Comments
 (0)