mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-16 15:40:16 +00:00
* stabsread.c (read_member_functions): Initialize domain for stubbed
member functions to avoid gdb core dumps when printing pointers to member functions. * cp-valprint.c (cp_print_class_method): Check for stubbed member functions.
This commit is contained in:
parent
b54a2f2d90
commit
39cb3d0488
@ -1,3 +1,11 @@
|
||||
Wed Apr 14 12:49:29 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
|
||||
|
||||
* stabsread.c (read_member_functions): Initialize domain for stubbed
|
||||
member functions to avoid gdb core dumps when printing pointers
|
||||
to member functions.
|
||||
* cp-valprint.c (cp_print_class_method): Check for stubbed member
|
||||
functions.
|
||||
|
||||
Tue Apr 13 08:28:26 1993 Jim Kingdon (kingdon@cygnus.com)
|
||||
|
||||
* expprint.c (print_subexp): If opcode not found in op_print_tab,
|
||||
|
@ -116,6 +116,8 @@ cp_print_class_method (valaddr, type, stream)
|
||||
for (j = 0; j < len2; j++)
|
||||
{
|
||||
QUIT;
|
||||
if (TYPE_FN_FIELD_STUB (f, j))
|
||||
check_stub_method (domain, i, j);
|
||||
if (STREQ (SYMBOL_NAME (sym), TYPE_FN_FIELD_PHYSNAME (f, j)))
|
||||
{
|
||||
goto common;
|
||||
|
@ -1566,6 +1566,8 @@ read_member_functions (fip, pp, type, objfile)
|
||||
|
||||
if (TYPE_FLAGS (new_sublist -> fn_field.type) & TYPE_FLAG_STUB)
|
||||
{
|
||||
if (!TYPE_DOMAIN_TYPE (new_sublist -> fn_field.type))
|
||||
TYPE_DOMAIN_TYPE (new_sublist -> fn_field.type) = type;
|
||||
new_sublist -> fn_field.is_stub = 1;
|
||||
}
|
||||
new_sublist -> fn_field.physname = savestring (*pp, p - *pp);
|
||||
|
Loading…
x
Reference in New Issue
Block a user