mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:07:58 +02:00

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 -
43 lines
522 B
ObjectPascal
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.
|