mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 07:38:07 +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,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
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