summary refs log tree commit diff stats
path: root/nim/transf.pas
diff options
context:
space:
mode:
Diffstat (limited to 'nim/transf.pas')
-rw-r--r--nim/transf.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/nim/transf.pas b/nim/transf.pas
index 5d9f44143..c4ed5740c 100644
--- a/nim/transf.pas
+++ b/nim/transf.pas
@@ -801,7 +801,7 @@ begin
       inc(j);
       if isConstExpr(a) then 
         while (j < sonsLen(m)) and isConstExpr(m.sons[j]) do begin
-          a := evalOp(op.magic, m, a, m.sons[j]);
+          a := evalOp(op.magic, m, a, m.sons[j], nil);
           inc(j)
         end;
       addSon(result, a);