aboutsummaryrefslogtreecommitdiff
path: root/gdb/buildsym.c
diff options
context:
space:
mode:
authorMichael Tiemann <tiemann@cygnus>1992-03-24 15:28:40 +0000
committerMichael Tiemann <tiemann@cygnus>1992-03-24 15:28:40 +0000
commitbe1384b0567a8c202807b622a5e0c8a75348f4f9 (patch)
tree6327c6b2cedc8bac97b525001a783a4f42ba51c4 /gdb/buildsym.c
parent62a469e129b32e32bb0409d2632d3ccaf1f61144 (diff)
downloadfsf-binutils-gdb-be1384b0567a8c202807b622a5e0c8a75348f4f9.zip
fsf-binutils-gdb-be1384b0567a8c202807b622a5e0c8a75348f4f9.tar.gz
fsf-binutils-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.c1
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 != ';');
}