* dwarfread.c (struct dieinfo): Remove obsolete at_visibility,

at_import, at_frame_base.
	* dwarfread.c (completedieinfo):  Remove cases for obsolete
	AT_visibility, AT_import, and AT_frame_base attributes.
	* breakpoint.h (BREAKPOINT_MAX):  Increase from 10 to 16 for
	i860, which can keep up to 4 shadow breakpoints.
	* tm-stratus.h (USG):  Define.
	* tm-stratus.h (TARGET_BYTE_ORDER):  Define to BIG_ENDIAN.
	* xm-stratus.h (HOST_BYTE_ORDER):  Define to BIG_ENDIAN.
	* xm-stratus.h (xm-sysv4.h):  Include, name changed from xm-svr4.h.
	* xm-stratus.h (NO_JOB_CONTROL):  Remove define.
	* config/stratus.mt (TDEPFILES):  Include files available from
	stratus that are not yet in release pending receipt of paperwork
	at FSF.
	* buildsym.c (finish_block):  Minor code format change.
	* gdbtypes.h (struct field):  Add to comments.
	* gdbtypes.h (virtual_field_bits):  Add to comments.
	* objfiles.c (allocate_objfile):  Change obstack interface to
	match FSF merging efforts.
This commit is contained in:
Fred Fish
1992-08-01 20:40:59 +00:00
parent 47660bef1b
commit cd46ffad4e
8 changed files with 100 additions and 48 deletions

View File

@ -195,12 +195,9 @@ struct dieinfo {
unsigned long at_member;
unsigned long at_discr;
BLOCK * at_discr_value;
unsigned short at_visibility;
unsigned long at_import;
BLOCK * at_string_length;
char * at_comp_dir;
char * at_producer;
unsigned long at_frame_base;
unsigned long at_start_scope;
unsigned long at_stride_size;
unsigned long at_src_info;
@ -3196,10 +3193,6 @@ completedieinfo (dip, objfile)
dip -> at_bit_offset = target_to_host (diep, nbytes, GET_UNSIGNED,
objfile);
break;
case AT_visibility:
dip -> at_visibility = target_to_host (diep, nbytes, GET_UNSIGNED,
objfile);
break;
case AT_sibling:
dip -> at_sibling = target_to_host (diep, nbytes, GET_UNSIGNED,
objfile);
@ -3244,10 +3237,6 @@ completedieinfo (dip, objfile)
dip -> at_discr = target_to_host (diep, nbytes, GET_UNSIGNED,
objfile);
break;
case AT_import:
dip -> at_import = target_to_host (diep, nbytes, GET_UNSIGNED,
objfile);
break;
case AT_location:
dip -> at_location = diep;
break;
@ -3293,10 +3282,6 @@ completedieinfo (dip, objfile)
case AT_producer:
dip -> at_producer = diep;
break;
case AT_frame_base:
dip -> at_frame_base = target_to_host (diep, nbytes, GET_UNSIGNED,
objfile);
break;
case AT_start_scope:
dip -> at_start_scope = target_to_host (diep, nbytes, GET_UNSIGNED,
objfile);