* allow subtraction/addition of internally generated nodes, resolves #27256

git-svn-id: trunk@29456 -
This commit is contained in:
florian 2015-01-12 20:56:17 +00:00
parent 1590ba813d
commit ccb01d6196
4 changed files with 33 additions and 5 deletions

1
.gitattributes vendored
View File

@ -14189,6 +14189,7 @@ tests/webtbs/tw27185.pp svneol=native#text/pascal
tests/webtbs/tw2721.pp svneol=native#text/plain
tests/webtbs/tw2723.pp svneol=native#text/plain
tests/webtbs/tw2725.pp svneol=native#text/plain
tests/webtbs/tw27256.pp svneol=native#text/pascal
tests/webtbs/tw2727.pp svneol=native#text/plain
tests/webtbs/tw2728.pp svneol=native#text/plain
tests/webtbs/tw2729.pp svneol=native#text/plain

View File

@ -409,8 +409,7 @@ implementation
end;
{ both are int constants }
if (
(
if (
is_constintnode(left) and
is_constintnode(right)
) or
@ -422,7 +421,7 @@ implementation
(
is_constenumnode(left) and
is_constenumnode(right) and
allowenumop(nodetype))
(allowenumop(nodetype) or (nf_internal in flags))
) or
(
(lt = pointerconstn) and
@ -2140,7 +2139,7 @@ implementation
{ enums }
else if (ld.typ=enumdef) and (rd.typ=enumdef) then
begin
if allowenumop(nodetype) then
if allowenumop(nodetype) or (nf_internal in flags) then
inserttypeconv(right,left.resultdef)
else
CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);

View File

@ -1702,7 +1702,10 @@ implementation
typecheckpass(temp);
if (temp.nodetype <> ordconstn) or
(tordconstnode(temp).value <> 0) then
hightree := caddnode.create(subn,hightree,temp)
begin
hightree:=caddnode.create(subn,hightree,temp);
include(hightree.flags,nf_internal);
end
else
temp.free;
end;

25
tests/webtbs/tw27256.pp Normal file
View File

@ -0,0 +1,25 @@
program Test;
type
FullType = (Unknown,Stiletto,Vanguard);
SubType = Stiletto..Vanguard;
const
full_choices: array[FullType] of String = ('U','S','V');
sub_choices: array[SubType] of String = ('S', 'V');
var
x : longint;
procedure abc(choices: array of String);
begin
inc(x,high(choices));
end;
begin
abc(full_choices);
abc(sub_choices);
if x<>3 then
halt(1);
writeln('ok');
end.