From eba76dd0526f13fd297eaea1cc0d6228f88571b8 Mon Sep 17 00:00:00 2001 From: florian Date: Sun, 1 May 2022 10:55:48 +0200 Subject: [PATCH] * allow 32 byte alignment of constants and variables on aarch64-darwin --- compiler/systems/i_darwin.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/systems/i_darwin.pas b/compiler/systems/i_darwin.pas index cc62269563..6639ec0069 100644 --- a/compiler/systems/i_darwin.pas +++ b/compiler/systems/i_darwin.pas @@ -652,9 +652,9 @@ const coalescealign : 0; coalescealignskipmax: 0; constalignmin : 0; - constalignmax : 16; + constalignmax : 32; varalignmin : 0; - varalignmax : 16; + varalignmax : 32; localalignmin : 4; localalignmax : 16; recordalignmin : 0;