mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-02 15:02:18 +00:00
* dbxread.c (read_dbx_symtab, process_one_symbol): Handle
Sequent N_FN_SEQ like everybody else's N_FN.
This commit is contained in:
parent
282effc79f
commit
6150cc735f
@ -1831,8 +1831,10 @@ read_dbx_symtab (symfile_name, addr,
|
||||
|
||||
/* We need to be able to deal with both N_FN or N_TEXT,
|
||||
because we have no way of knowing whether the sys-supplied ld
|
||||
or GNU ld was used to make the executable. */
|
||||
or GNU ld was used to make the executable. Sequents throw
|
||||
in another wrinkle -- they renumbered N_FN. */
|
||||
case N_FN:
|
||||
case N_FN_SEQ:
|
||||
case N_TEXT:
|
||||
bufp->n_value += addr; /* Relocate */
|
||||
SET_NAMESTRING();
|
||||
@ -3151,6 +3153,7 @@ process_one_symbol (type, desc, valu, name)
|
||||
break;
|
||||
|
||||
case N_FN:
|
||||
case N_FN_SEQ:
|
||||
/* This kind of symbol indicates the start of an object file. */
|
||||
break;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user