mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-27 01:28:46 +00:00
* alpha-tdep.h (ALPHA_REGISTER_BYTES): Delete.
* arm-tdep.h (STATUS_REGISTER_SIZE): Delete. * breakpoint.c (args_for_catchpoint_enable, current_exception_event): Delete. * c-typeprint.c (c_type_print_base): Delete handling of template instantiations. * cp-support.h (METHOD_PTR_IS_VIRTUAL, METHOD_PTR_FROM_VOFFSET) (METHOD_PTR_TO_VOFFSET): Delete. * defs.h (QUIT_FIXME): Delete. * f-lang.h (DEFAULT_DOTMAIN_NAME_IN_MF77, DEFAULT_MAIN_NAME_IN_MF77) (DEFAULT_DOTMAIN_NAME_IN_XLF_BUGGY, DEFAULT_DOTMAIN_NAME_IN_XLF): Delete. * gdbtypes.h (struct cplus_struct_type): Delete is_inlined, ninstantiations, and instantiations. (TYPE_INSTANTIATIONS, TYPE_NINSTANTIATIONS, TYPE_INSTANTIATION) (TYPE_FN_FIELD_INLINED): Delete. * srec.h (SREC_BINARY): Delete. * symtab.c (symbol_init_demangled_name): Delete. * symtab.h (SYMBOL_INIT_DEMANGLED_NAME, symbol_init_demangled_name) (SYMBOL_OBJFILE, struct exception_event_record, CURRENT_EXCEPTION_KIND) (CURRENT_EXCEPTION_CATCH_SAL, CURRENT_EXCEPTION_CATCH_LINE) (CURRENT_EXCEPTION_CATCH_FILE, CURRENT_EXCEPTION_CATCH_PC) (CURRENT_EXCEPTION_THROW_SAL, CURRENT_EXCEPTION_THROW_LINE) (CURRENT_EXCEPTION_THROW_FILE, CURRENT_EXCEPTION_THROW_PC): Delete. * target.h (enum thread_control_capabilities): Delete tc_switch. (target_can_switch_threads): Delete.
This commit is contained in:
@@ -1043,8 +1043,6 @@ c_type_print_base (struct type *type, struct ui_file *stream, int show,
|
||||
TYPE_LOCALTYPE_FILE (type),
|
||||
TYPE_LOCALTYPE_LINE (type));
|
||||
}
|
||||
if (TYPE_CODE (type) == TYPE_CODE_TEMPLATE)
|
||||
goto go_back;
|
||||
break;
|
||||
|
||||
case TYPE_CODE_ENUM:
|
||||
@@ -1127,22 +1125,7 @@ c_type_print_base (struct type *type, struct ui_file *stream, int show,
|
||||
fprintf_filtered (stream, ", ");
|
||||
}
|
||||
fprintf_filtered (stream, "> class ");
|
||||
/* Yuck, factor this out to a subroutine so we can call
|
||||
it and return to the point marked with the "goback:" label... - RT */
|
||||
goto struct_union;
|
||||
go_back:
|
||||
if (TYPE_NINSTANTIATIONS (type) > 0)
|
||||
{
|
||||
fprintf_filtered (stream, _("\ntemplate instantiations:\n"));
|
||||
for (i = 0; i < TYPE_NINSTANTIATIONS (type); i++)
|
||||
{
|
||||
fprintf_filtered (stream, " ");
|
||||
c_type_print_base (TYPE_INSTANTIATION (type, i), stream, 0, level);
|
||||
if (i < TYPE_NINSTANTIATIONS (type) - 1)
|
||||
fprintf_filtered (stream, "\n");
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case TYPE_CODE_NAMESPACE:
|
||||
fputs_filtered ("namespace ", stream);
|
||||
|
||||
Reference in New Issue
Block a user