From 8f37905609f636b79f3c368b05c86727aceea058 Mon Sep 17 00:00:00 2001 From: Sven/Sarah Barth Date: Fri, 22 Nov 2024 17:57:02 +0100 Subject: [PATCH] * use a static data label for the case-label table on aarch64-win64 to avoid the linker discarding it --- compiler/aarch64/ncpuset.pas | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/compiler/aarch64/ncpuset.pas b/compiler/aarch64/ncpuset.pas index 7338224067..abd7ac4b65 100644 --- a/compiler/aarch64/ncpuset.pas +++ b/compiler/aarch64/ncpuset.pas @@ -240,8 +240,11 @@ implementation cg.a_cmp_const_reg_label(current_asmdata.CurrAsmList,opcgsize,OC_A,aint(max_)-aint(min_),hregister,elselabel); min_:=0; end; - { local label in order to avoid using GOT } - current_asmdata.getlabel(tablelabel,alt_data); + if target_info.system=system_aarch64_win64 then + current_asmdata.getstaticdatalabel(tablelabel) + else + { local label in order to avoid using GOT } + current_asmdata.getlabel(tablelabel,alt_data); indexreg:=cg.makeregsize(current_asmdata.CurrAsmList,hregister,OS_ADDR); cg.a_load_reg_reg(current_asmdata.CurrAsmList,opcgsize,OS_ADDR,hregister,indexreg); { load table address }