* 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,7 +1305,11 @@ implementation
begin begin
{ Check label type coverage for enumerations and small types } { Check label type coverage for enumerations and small types }
getrange(left.resultdef,lv,hv); getrange(left.resultdef,lv,hv);
typcount:=hv-lv; { 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 if not assigned(elseblock) then
begin begin
{ unless cs_check_all_case_coverage is set, only check for enums, booleans and { unless cs_check_all_case_coverage is set, only check for enums, booleans and

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.