From a91e547832499249ef916470154a1a2b31421ee4 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 3 Oct 2022 14:40:57 +0200 Subject: [PATCH] * set the maximum alignment values for constants and variables to 64 on aarch64-linux --- compiler/systems/i_linux.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/systems/i_linux.pas b/compiler/systems/i_linux.pas index 5d579f32ca..a5494e748e 100644 --- a/compiler/systems/i_linux.pas +++ b/compiler/systems/i_linux.pas @@ -948,9 +948,9 @@ unit i_linux; constalignmin : 0; constalignmax : 16; varalignmin : 0; - varalignmax : 16; + varalignmax : 64; localalignmin : 4; - localalignmax : 16; + localalignmax : 64; recordalignmin : 0; recordalignmax : 16; maxCrecordalign : 16