Browse Source

+ print optinfo pointer if set

florian 2 years ago
parent
commit
2c51abf40d
1 changed files with 2 additions and 0 deletions
  1. 2 0
      compiler/node.pas

+ 2 - 0
compiler/node.pas

@@ -887,6 +887,8 @@ implementation
         write(t,']');
         write(t,']');
         if (nf_pass1_done in flags) then
         if (nf_pass1_done in flags) then
           write(t,', cmplx = ',node_complexity(self));
           write(t,', cmplx = ',node_complexity(self));
+        if assigned(optinfo) then
+          write(t,', optinfo = ',HexStr(optinfo));
       end;
       end;