aboutsummaryrefslogtreecommitdiff
path: root/gdb/xcoffread.c
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-05-21 14:08:17 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-05-21 14:08:17 +0000
commit7326242025e8f2044ecd483f0b5cc0b85851110c (patch)
tree41298c11af69d8b8819073b6dda5237e63897875 /gdb/xcoffread.c
parentebc447f46dcafab27a31d0f48fc25254940e32ad (diff)
downloadfsf-binutils-gdb-7326242025e8f2044ecd483f0b5cc0b85851110c.zip
fsf-binutils-gdb-7326242025e8f2044ecd483f0b5cc0b85851110c.tar.gz
fsf-binutils-gdb-7326242025e8f2044ecd483f0b5cc0b85851110c.tar.bz2
* xcoffread.c (process_xcoff_symbol, case C_LSYM): Use define_symbol.
Diffstat (limited to 'gdb/xcoffread.c')
-rw-r--r--gdb/xcoffread.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c
index d765f03..aaf8d59 100644
--- a/gdb/xcoffread.c
+++ b/gdb/xcoffread.c
@@ -53,6 +53,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "libcoff.h" /* FIXME, internal data from BFD */
#include "coff/rs6000.h" /* FIXME, raw file-format guts of xcoff */
+/* For interface with stabsread.c. */
+#include "stab_gnu.h"
/* Define this if you want gdb to ignore typdef stabs. This was needed for
one of Transarc, to reduce the size of the symbol table. Types won't be
@@ -1742,16 +1744,12 @@ process_xcoff_symbol (cs, objfile)
return sym;
case C_LSYM:
- if (*name == ':' || (pp = (char *) strchr (name, ':')) == NULL)
- return NULL;
- SYMBOL_NAME (sym) = obsavestring (name, pp-name, &objfile -> symbol_obstack);
- SYMBOL_CLASS (sym) = LOC_LOCAL;
- pp += 1;
- SYMBOL_TYPE (sym) = read_type (&pp, objfile);
- SYMBOL_SECTION (sym) = cs->c_secnum;
- SYMBOL_DUP (sym, sym2);
- add_symbol_to_list (sym2, &local_symbols);
- break;
+ sym = define_symbol (cs->c_value, cs->c_name, 0, N_LSYM, objfile);
+ if (sym != NULL)
+ {
+ SYMBOL_SECTION (sym) = cs->c_secnum;
+ }
+ return sym;
case C_AUTO:
SYMBOL_CLASS (sym) = LOC_LOCAL;