* implicitly call procvars in tp/delphi modes for divmodn, shlshrn

and notn (mantis 7200)

git-svn-id: trunk@5724 -
This commit is contained in:
Jonas Maebe 2006-12-27 14:29:23 +00:00
parent 92538bcb2a
commit 4ae9ac969a
3 changed files with 46 additions and 1 deletions

1
.gitattributes vendored
View File

@ -7785,6 +7785,7 @@ tests/webtbs/tw7143.pp -text
tests/webtbs/tw7161.pp svneol=native#text/plain
tests/webtbs/tw7173.pp svneol=native#text/plain
tests/webtbs/tw7195.pp svneol=native#text/plain
tests/webtbs/tw7200.pp svneol=native#text/plain
tests/webtbs/tw7227.pp svneol=native#text/plain
tests/webtbs/tw7276.pp svneol=native#text/plain
tests/webtbs/tw7281.pp svneol=native#text/plain

View File

@ -94,7 +94,8 @@ implementation
defutil,
htypechk,pass_1,
cgbase,
ncon,ncnv,ncal,nadd;
ncon,ncnv,ncal,nadd,
nutils;
{****************************************************************************
TMODDIVNODE
@ -164,6 +165,10 @@ implementation
if codegenerror then
exit;
{ tp procvar support }
maybe_call_procvar(left,true);
maybe_call_procvar(right,true);
result:=simplify;
if assigned(result) then
exit;
@ -495,6 +500,10 @@ implementation
if codegenerror then
exit;
{ tp procvar support }
maybe_call_procvar(left,true);
maybe_call_procvar(right,true);
result:=simplify;
if assigned(result) then
exit;
@ -853,6 +862,9 @@ implementation
if codegenerror then
exit;
{ tp procvar support }
maybe_call_procvar(left,true);
resultdef:=left.resultdef;
result:=simplify;

32
tests/webtbs/tw7200.pp Normal file
View File

@ -0,0 +1,32 @@
{$mode delphi}
var i : integer;
function GetInt : integer;
begin
Result := 10;
end;
var myfunc : function : integer;
begin
myfunc := GetInt;
//i := integer(myfunc) div 2; //works
//i := myfunc; i := i div 2; //works
i := myfunc div 2; //does not work
if (i <> 5) then
halt(1);
i := myfunc shr 2;
if i <> 2 then
halt(2);
i := not myfunc;
if i <> not(integer(10)) then
halt(3);
end.