diff options
author | Michael Tiemann <tiemann@cygnus> | 1992-03-24 15:28:40 +0000 |
---|---|---|
committer | Michael Tiemann <tiemann@cygnus> | 1992-03-24 15:28:40 +0000 |
commit | be1384b0567a8c202807b622a5e0c8a75348f4f9 (patch) | |
tree | 6327c6b2cedc8bac97b525001a783a4f42ba51c4 /gdb/buildsym.c | |
parent | 62a469e129b32e32bb0409d2632d3ccaf1f61144 (diff) | |
download | gdb-be1384b0567a8c202807b622a5e0c8a75348f4f9.zip gdb-be1384b0567a8c202807b622a5e0c8a75348f4f9.tar.gz gdb-be1384b0567a8c202807b622a5e0c8a75348f4f9.tar.bz2 |
Fixed a place where dbx symbol name continuation was appearing in an
unexpected place, causing the `Trace' type in gperf/main.o to be
mis-parsed.
Diffstat (limited to 'gdb/buildsym.c')
-rw-r--r-- | gdb/buildsym.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/buildsym.c b/gdb/buildsym.c index c74ea1e..f50ced7 100644 --- a/gdb/buildsym.c +++ b/gdb/buildsym.c @@ -2579,6 +2579,7 @@ read_struct_type (pp, type, objfile) mainlist = new_mainlist; nfn_fields++; total_length += length; + if (**pp == '\\') *pp = next_symbol_text (); } while (**pp != ';'); } |