aboutsummaryrefslogtreecommitdiff
path: root/gdb/stabsread.c
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1998-03-19 04:47:59 +0000
committerJeff Law <law@redhat.com>1998-03-19 04:47:59 +0000
commitc298bd54ba1068154d75dd7ecbcf6eb6a10f8d67 (patch)
treeb616c35e2af5f2c57d53a583c7be6ab8ab45845d /gdb/stabsread.c
parent0b9843e5ee7f2db8f2f40446a62d69b155af86a2 (diff)
downloadfsf-binutils-gdb-c298bd54ba1068154d75dd7ecbcf6eb6a10f8d67.zip
fsf-binutils-gdb-c298bd54ba1068154d75dd7ecbcf6eb6a10f8d67.tar.gz
fsf-binutils-gdb-c298bd54ba1068154d75dd7ecbcf6eb6a10f8d67.tar.bz2
* stabsread.c (define_symbol): Don't look for ',' as a LRS
indicator.
Diffstat (limited to 'gdb/stabsread.c')
-rw-r--r--gdb/stabsread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/stabsread.c b/gdb/stabsread.c
index e32afd8..ac848b9 100644
--- a/gdb/stabsread.c
+++ b/gdb/stabsread.c
@@ -2119,7 +2119,7 @@ define_symbol (valu, string, desc, type, objfile)
}
/* Is there more to parse? For example LRS/alias information? */
- while (*p && (*p == ';' || *p == ','))
+ while (*p && *p == ';')
{
p++;
if (*p && *p == 'l')