Browse Source

- removed a sanity check for the output of nm, because it doesn't hold
on Darwin in some cases: it sometimes has a "symbol" with the name
" stub helpers" (including the leading space)

git-svn-id: trunk@20502 -

Jonas Maebe 13 years ago
parent
commit
d95d0e588d
1 changed files with 0 additions and 3 deletions
  1. 0 3
      compiler/optdead.pas

+ 0 - 3
compiler/optdead.pas

@@ -312,9 +312,6 @@ const
         { make sure there's room for the name }
         if failiferror(fsymnamepos>length(line)) then
           exit;
-        { and that we're not in the middle of some other column }
-        if failiferror(pos(' ',copy(line,fsymnamepos,length(line)))>0) then
-          exit;
         result:=true;
       end;