From b499e7593a593b86ee2f543ec1bee6efb0899b63 Mon Sep 17 00:00:00 2001 From: florian Date: Fri, 16 Aug 2024 19:55:34 +0200 Subject: [PATCH] * corrected alignment for Risc-V on Linux --- compiler/systems/i_linux.pas | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/compiler/systems/i_linux.pas b/compiler/systems/i_linux.pas index c667785219..26e96bf91a 100644 --- a/compiler/systems/i_linux.pas +++ b/compiler/systems/i_linux.pas @@ -1297,14 +1297,14 @@ unit i_linux; coalescealign : 0; coalescealignskipmax: 0; constalignmin : 0; - constalignmax : 8; + constalignmax : 16; varalignmin : 0; - varalignmax : 8; + varalignmax : 16; localalignmin : 4; - localalignmax : 8; + localalignmax : 16; recordalignmin : 0; - recordalignmax : 8; - maxCrecordalign : 8 + recordalignmax : 16; + maxCrecordalign : 16 ); first_parm_offset : 0; stacksize : 32*1024*1024;