* set expectloc properly for x87 on x86

This commit is contained in:
florian 2021-09-24 22:27:22 +02:00
parent a6e75d52f7
commit f56aa9abe7

View File

@ -2657,7 +2657,11 @@ implementation
if use_vectorfpu(realresdef) then
result:=LOC_MMREGISTER
else
{$ifdef x86}
result:=LOC_REFERENCE
{$else x86}
result:=LOC_FPUREGISTER
{$endif x86}
else
result:=LOC_REFERENCE
end;