diff options
author | Kung Hsu <kung@cygnus> | 1994-03-10 03:13:52 +0000 |
---|---|---|
committer | Kung Hsu <kung@cygnus> | 1994-03-10 03:13:52 +0000 |
commit | d9389f37d5d0c895d0e3f11cdf1632dd6b458342 (patch) | |
tree | 4d1cb02e14575aec065e9243e3a9fc972d9ab455 /gdb/stabsread.c | |
parent | 0906de694fd64cb2c5a203dfad9a4bf920dc9317 (diff) | |
download | gdb-d9389f37d5d0c895d0e3f11cdf1632dd6b458342.zip gdb-d9389f37d5d0c895d0e3f11cdf1632dd6b458342.tar.gz gdb-d9389f37d5d0c895d0e3f11cdf1632dd6b458342.tar.bz2 |
Modified Files:
ChangeLog os9kread.c stabsread.c remote-os9k.c symfile.c
target.c
* os9kread.c (fill_sym): check compiler verion number for pre-
UltraC compiler.
* os9kread.c (os9k_process_one_symbol): address of symbol is
relative to section not module.
* stabsread.c (define_symbol): add symbol type 's' as local
symbol for os9k.
* remote-os9k.c: add command 'set monitor_log' to turn on or off
monitor logging.
* remote-os9k.c: fix bug in delete breakpoint, single step trace.
* remote-os9k.c: fix bug in 'set remotebaud' function.
* remote-os9k.c (rombug_link): minimize checking so to improve
speed.
* symfile.c (symfile_command): check if failed to link, also make
the command be able to accept more than one filenames.
* target.c (target_link): check if failed to link with rombug.
Diffstat (limited to 'gdb/stabsread.c')
-rw-r--r-- | gdb/stabsread.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/stabsread.c b/gdb/stabsread.c index 860d72a..8e7aec4 100644 --- a/gdb/stabsread.c +++ b/gdb/stabsread.c @@ -805,6 +805,7 @@ define_symbol (valu, string, desc, type, objfile) /* This case is faked by a conditional above, when there is no code letter in the dbx data. Dbx data never actually contains 'l'. */ + case 's': case 'l': SYMBOL_TYPE (sym) = read_type (&p, objfile); SYMBOL_CLASS (sym) = LOC_LOCAL; |