* 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:
Peter Schauer 1993-04-14 19:53:11 +00:00
parent b54a2f2d90
commit 39cb3d0488
3 changed files with 12 additions and 0 deletions

View File

@ -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,

View File

@ -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;

View File

@ -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);