summaryrefslogtreecommitdiff
path: root/gdb/mdebugread.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2003-01-03 14:01:47 +0000
committerJoel Brobecker <brobecker@gnat.com>2003-01-03 14:01:47 +0000
commit7033c88c5101a0f204a6bf556bf8b6a86ff4b2e9 (patch)
tree2f15ffe650c941dc69b35024f4fd2f06b4d9a0fd /gdb/mdebugread.c
parent2a258010057deed2cd7271df63c373b51a188637 (diff)
downloadgdb-7033c88c5101a0f204a6bf556bf8b6a86ff4b2e9.tar.gz
* mdebugread.c (parse_symbol): Count until the stEnd matching
the structure name.
Diffstat (limited to 'gdb/mdebugread.c')
-rw-r--r--gdb/mdebugread.c19
1 files changed, 18 insertions, 1 deletions
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c
index f6ec396f76f..b5a15c38d7d 100644
--- a/gdb/mdebugread.c
+++ b/gdb/mdebugread.c
@@ -865,7 +865,24 @@ parse_symbol (SYMR *sh, union aux_ext *ax, char *ext_sh, int bigend,
switch (tsym.st)
{
case stEnd:
- goto end_of_fields;
+ /* C++ encodes class types as structures where there the
+ methods are encoded as stProc. The scope of stProc
+ symbols also ends with stEnd, thus creating a risk of
+ taking the wrong stEnd symbol record as the end of
+ the current struct, which would cause GDB to undercount
+ the real number of fields in this struct. To make sure
+ we really reached the right stEnd symbol record, we
+ check the associated name, and match it against the
+ struct name. Since method names are mangled while
+ the class name is not, there is no risk of having a
+ method whose name is identical to the class name
+ (in particular constructor method names are different
+ from the class name). There is therefore no risk that
+ this check stops the count on the StEnd of a method. */
+ if (strcmp (debug_info->ss + cur_fdr->issBase + tsym.iss,
+ name) == 0)
+ goto end_of_fields;
+ break;
case stMember:
if (nfields == 0 && type_code == TYPE_CODE_UNDEF)