mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:58:06 +02:00
* correctly calculate the number of labels of a c boolean in case statemnts, resolves #41025
This commit is contained in:
parent
28e9ebc7da
commit
4d732b44d4
@ -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
13
tests/webtbs/tw41025.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user