mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 21:19:54 +00:00
* cp-valprint.c (cplus_print_value): Call check_stub_type on
TYPE_BASECLASS (type, i) before we look at its name.
This commit is contained in:
parent
404f69a80b
commit
2d2fc7e464
@ -1,5 +1,8 @@
|
||||
Mon Dec 27 11:07:05 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||
|
||||
* cp-valprint.c (cplus_print_value): Call check_stub_type on
|
||||
TYPE_BASECLASS (type, i) before we look at its name.
|
||||
|
||||
* dbxread.c: Move default definition of GCC_COMPILED_FLAG_SYMBOL
|
||||
from here . . .
|
||||
* symtab.h: . . . to here.
|
||||
|
@ -355,7 +355,10 @@ cplus_print_value (type, valaddr, stream, format, recurse, pretty, dont_print)
|
||||
{
|
||||
char *baddr;
|
||||
int err;
|
||||
char *basename = TYPE_NAME (TYPE_BASECLASS (type, i));
|
||||
char *basename;
|
||||
|
||||
check_stub_type (TYPE_BASECLASS (type, i));
|
||||
basename = TYPE_NAME (TYPE_BASECLASS (type, i));
|
||||
|
||||
if (BASETYPE_VIA_VIRTUAL (type, i))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user