* correctly calculate the number of labels of a c boolean in case statemnts, resolves #41025

This commit is contained in:
florian 2024-11-20 22:04:07 +01:00
parent 28e9ebc7da
commit 4d732b44d4
2 changed files with 18 additions and 1 deletions

View File

@ -1305,6 +1305,10 @@ implementation
begin
{ Check label type coverage for enumerations and small types }
getrange(left.resultdef,lv,hv);
{ low/high value of c-style booleans are not suitable for calculating their "type count" }
if is_cbool(left.resultdef) then
typcount:=1
else
typcount:=hv-lv;
if not assigned(elseblock) then
begin

13
tests/webtbs/tw41025.pp Normal file
View File

@ -0,0 +1,13 @@
{ %OPT=-Sew }
program a;
uses types;
var b:longbool;
begin
b:=false;
case b of
true: writeln('True');
false: writeln('False');
end;
end.