Explorar el Código

Fix a bug in ppudump that seems to be there since revision 1.

compiler/utils/pputils/ppudump.pp, readsymbols:
  * ibstartsyms only contains one longint, namely the count of the symbols, not two

git-svn-id: trunk@33887 -
svenbarth hace 9 años
padre
commit
b073d2dac5
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      compiler/utils/ppuutils/ppudump.pp

+ 1 - 2
compiler/utils/ppuutils/ppudump.pp

@@ -2334,8 +2334,7 @@ begin
       Writeln([space,'------ ',s,' ------']);
      if readentry=ibstartsyms then
       begin
-        Writeln([space,'Symtable datasize : ',getlongint]);
-        Writeln([space,'Symtable alignment: ',getlongint]);
+        Writeln([space,'Symtable count: ',getlongint]);
       end
      else
       Writeln('!! ibstartsym not found');