fpc/tests/tbs/tb0605.pp
svenbarth 60a07770f1 Fix cycling after addition of the new case simplification.
nset.pas, tcasenode.simplify: don't assume a specific order of the case labels

+ added test based on ppu.pas, tppu.getaint where no matching case label was found because of the ordering

git-svn-id: trunk@26825 -
2014-02-21 22:49:19 +00:00

43 lines
522 B
ObjectPascal

program tb0605;
{$mode objfpc}
type
aint = longint;
function getint64: int64;
begin
Result := 64;
end;
function getlongint: longint;
begin
Result := 32;
end;
function getword: word;
begin
result := 16;
end;
function getbyte: byte;
begin
result := 8;
end;
function getaint: longint;
begin
result:=4;
case sizeof(aint) of
8: result:=getint64;
4: result:=getlongint;
2: result:=smallint(getword);
1: result:=shortint(getbyte);
end;
end;
begin
if getaint <> 32 then
Halt(1);
end.