*** empty log message ***

This commit is contained in:
Steve Chamberlain 1991-04-04 15:34:09 +00:00
parent 37a1fd96b7
commit f61d204a35
3 changed files with 5 additions and 4 deletions

View File

@ -1864,7 +1864,7 @@ bfd_target ieee_vec =
(HAS_RELOC | EXEC_P | /* object flags */
HAS_LINENO | HAS_DEBUG |
HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT | D_PAGED),
(SEC_CODE|SEC_DATA|SEC_ROM
(SEC_CODE|SEC_DATA|SEC_ROM|SEC_HAS_CONTENTS
|SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
0, /* valid reloc types */
' ', /* ar_pad_char */

View File

@ -293,7 +293,8 @@ bfd *abfd;
while (loop) {
oasys_record_union_type record;
oasys_read_record(abfd, &record);
if (record.header.length < sizeof(record.header))
return (bfd_target *)NULL;
switch ((oasys_record_enum_type)(record.header.type)) {
case oasys_record_is_header_enum:

View File

@ -40,7 +40,7 @@ extern bfd_target m88k_bcs_vec;
bfd_target *target_vector[] =
{
#ifndef INTEL960VERSION
&srec_vec,
#endif /* INTEL960VERSION */
&ieee_vec,
@ -51,6 +51,6 @@ bfd_target *target_vector[] =
&m88k_bcs_vec,
&b_out_vec_big_host,
&b_out_vec_little_host,
&srec_vec,
NULL
};