mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:47:54 +02:00
* New test to catch Boolean added to QWord on i386
This commit is contained in:
parent
a70e4ed9be
commit
f29f794543
34
tests/webtbs/tw41148.pp
Normal file
34
tests/webtbs/tw41148.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user