[BACK]Return to elf.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / gprof

Diff for /src/usr.bin/gprof/elf.c between version 1.3 and 1.4

version 1.3, 2004/07/20 18:20:55 version 1.4, 2007/01/09 15:13:37
Line 144 
Line 144 
 #endif  #endif
         return 0;          return 0;
   
   #ifdef __arm__
       /* ignore what gas calls "mapping symbols" */
       {
           const char *c = strtab + sym->st_name;
           if (c[0] == '$')
               return 0;
       }
   #endif
   
     return 1;      return 1;
 }  }

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4