* New test to catch Boolean added to QWord on i386

This commit is contained in:
J. Gareth "Curious Kit" Moreton 2025-02-25 23:09:42 +00:00 committed by FPK
parent a70e4ed9be
commit f29f794543

34
tests/webtbs/tw41148.pp Normal file
View File

@ -0,0 +1,34 @@
{ %OPT=-O3 -OoNOCONSTPROP }
{ Test adding a typecast Boolean to a 64-bit integer }
program tw41148;
{$mode objfpc}
procedure v64(out code: int32);
var
v: uint64;
r : record
b: boolean;
end;
begin
r.b := true;
v := uint64(High(int64)) + uint64(r.b);
WriteLn(' Calculated: ' , BinStr(v, 64));
if v <> uint64($8000000000000000) then
begin
WriteLn('FAIL - expected: 1000000000000000000000000000000000000000000000000000000000000000');
code := 1;
end
else
code := 0;
end;
var
code: int32;
begin
v64(code);
if code <> 0 then
Halt(code);
WriteLn('ok');
end.