mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:24:24 +02:00
* AArch64: fix storing a 32 bit value in the lower 32 bits of a 64 bit
subsetreg (mantis #38766) git-svn-id: trunk@49236 -
This commit is contained in:
parent
77681333f5
commit
7c9fb4b4af
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
|
||||
|
@ -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)<getsubreg(sreg.subsetreg)) then
|
||||
begin
|
||||
makeregssamesize(list,def_cgsize(fromsize),sreg.subsetregsize,fromreg,sreg.subsetreg,fromreg,toreg);
|
||||
list.concat(taicpu.op_reg_reg_const_const(A_BFI,toreg,fromreg,sreg.startbit,sreg.bitlen))
|
||||
|
28
tests/webtbs/tw38766.pp
Normal file
28
tests/webtbs/tw38766.pp
Normal file
@ -0,0 +1,28 @@
|
||||
{$mode objfpc}
|
||||
|
||||
type
|
||||
trec = record
|
||||
x, y: longint;
|
||||
end;
|
||||
|
||||
function max(x,y: longint): longint;
|
||||
begin
|
||||
if x>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.
|
Loading…
Reference in New Issue
Block a user