mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-05 06:47:45 -04:00
32x drc functional on ARM, random adjustments
git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@824 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
1eb704b633
commit
ebc9df9f7e
3 changed files with 12 additions and 10 deletions
|
@ -37,7 +37,7 @@ remove_useless_symbols (asymbol **symbols, long count)
|
|||
{
|
||||
asymbol *sym = *in_ptr++;
|
||||
|
||||
if (sym->name == NULL || sym->name[0] == '\0')
|
||||
if (sym->name == NULL || sym->name[0] == '\0' || sym->name[0] == '$')
|
||||
continue;
|
||||
if (sym->flags & (BSF_DEBUGGING | BSF_SECTION_SYM))
|
||||
continue;
|
||||
|
@ -53,6 +53,7 @@ remove_useless_symbols (asymbol **symbols, long count)
|
|||
*/
|
||||
*out_ptr++ = sym;
|
||||
}
|
||||
|
||||
return out_ptr - symbols;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue