mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 07:49:20 +02:00
* fixed internconsts with two arguments. This allows compile time evaluation of ptr(const,const) on i8086 and i386.
git-svn-id: trunk@32116 -
This commit is contained in:
parent
6537b99ac3
commit
e325cf1126
@ -3602,7 +3602,7 @@ implementation
|
|||||||
is_const:=(po_internconst in procdefinition.procoptions) and
|
is_const:=(po_internconst in procdefinition.procoptions) and
|
||||||
((block_type in [bt_const,bt_type,bt_const_type,bt_var_type]) or
|
((block_type in [bt_const,bt_type,bt_const_type,bt_var_type]) or
|
||||||
(assigned(left) and ((tcallparanode(left).left.nodetype in [realconstn,ordconstn])
|
(assigned(left) and ((tcallparanode(left).left.nodetype in [realconstn,ordconstn])
|
||||||
and (not assigned(tcallparanode(left).right) or (tcallparanode(left).right.nodetype in [realconstn,ordconstn])))));
|
and (not assigned(tcallparanode(left).right) or (tcallparanode(tcallparanode(left).right).left.nodetype in [realconstn,ordconstn])))));
|
||||||
if (procdefinition.proccalloption=pocall_internproc) or is_const then
|
if (procdefinition.proccalloption=pocall_internproc) or is_const then
|
||||||
begin
|
begin
|
||||||
if assigned(left) then
|
if assigned(left) then
|
||||||
|
Loading…
Reference in New Issue
Block a user