From: Ken Raeburn Date: Tue, 10 Jan 1995 18:42:28 +0000 (+0000) Subject: * config/obj-coff.c (write_object_file): Don't treat h8300 and z8k specially X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7a55f462682ce756503ae7490c972717f1153b6e;p=binutils-gdb.git * config/obj-coff.c (write_object_file): Don't treat h8300 and z8k specially with regard to fixups. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 8c0cc3a0d63..2d8fbb66731 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Tue Jan 10 13:34:14 1995 Ken Raeburn + + * config/obj-coff.c (write_object_file): Don't treat h8300 and z8k + specially with regard to fixups. + Mon Jan 9 16:22:28 1995 Ken Raeburn * config/tc-mips.c (RELAX_RELOC1, RELAX_RELOC2): Cast values to diff --git a/gas/config/obj-coff.c b/gas/config/obj-coff.c index b54e3d290b1..ccb0842f1a7 100644 --- a/gas/config/obj-coff.c +++ b/gas/config/obj-coff.c @@ -2943,7 +2943,9 @@ write_object_file () H_SET_STRING_SIZE (&headers, string_byte_count); -#if !defined(TC_H8300) && !defined(TC_Z8K) + /* @@ Try this unconditionally for now. Let me know if you encounter + cases that don't work. -- Ken */ +#if 1 /* !defined(TC_H8300) && !defined(TC_Z8K) */ for (i = SEG_E0; i < SEG_UNKNOWN; i++) { fixup_mdeps (segment_info[i].frchainP->frch_root, &headers, i);