From 7c9fb4b4afa41e64105db799a3e62de4ac382fb0 Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Mon, 19 Apr 2021 20:52:12 +0000 Subject: [PATCH] * AArch64: fix storing a 32 bit value in the lower 32 bits of a 64 bit subsetreg (mantis #38766) git-svn-id: trunk@49236 - --- .gitattributes | 1 + compiler/aarch64/hlcgcpu.pas | 3 ++- tests/webtbs/tw38766.pp | 28 ++++++++++++++++++++++++++++ 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 tests/webtbs/tw38766.pp diff --git a/.gitattributes b/.gitattributes index 743f92660c..d165df295a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -18797,6 +18797,7 @@ tests/webtbs/tw3870.pp svneol=native#text/plain tests/webtbs/tw38703.pp svneol=native#text/pascal tests/webtbs/tw38718.pp svneol=native#text/pascal tests/webtbs/tw38733.pp svneol=native#text/pascal +tests/webtbs/tw38766.pp svneol=native#text/plain tests/webtbs/tw3893.pp svneol=native#text/plain tests/webtbs/tw3898.pp svneol=native#text/plain tests/webtbs/tw3899.pp svneol=native#text/plain diff --git a/compiler/aarch64/hlcgcpu.pas b/compiler/aarch64/hlcgcpu.pas index 593c202ef8..9de4e55ad7 100644 --- a/compiler/aarch64/hlcgcpu.pas +++ b/compiler/aarch64/hlcgcpu.pas @@ -210,7 +210,8 @@ implementation if slopt in [SL_SETZERO,SL_SETMAX] then inherited else if not(sreg.bitlen in [32,64]) or - (sreg.startbit<>0) then + (sreg.startbit<>0) or + (getsubreg(fromreg)y then + result:=x + else + result:=y; +end; + +function test: trec; inline; +begin + result.x:=1; + result.y:=2; + result.x:=max(result.x,result.y); +end; + +begin + if test.x<>2 then + halt(1); + if test.y<>2 then + halt(2); +end.