diff options
author | Ken Raeburn <raeburn@cygnus> | 1995-01-10 18:42:28 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1995-01-10 18:42:28 +0000 |
commit | 7a55f462682ce756503ae7490c972717f1153b6e (patch) | |
tree | b1d0230e02f7f148ed1dde1d30bb69b98c6f8112 /gas | |
parent | 483971bdbfba1ce02604cdfaf22648d46f71eef3 (diff) | |
download | gdb-7a55f462682ce756503ae7490c972717f1153b6e.zip gdb-7a55f462682ce756503ae7490c972717f1153b6e.tar.gz gdb-7a55f462682ce756503ae7490c972717f1153b6e.tar.bz2 |
* config/obj-coff.c (write_object_file): Don't treat h8300 and z8k specially
with regard to fixups.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/obj-coff.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 8c0cc3a..2d8fbb6 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Tue Jan 10 13:34:14 1995 Ken Raeburn <raeburn@cujo.cygnus.com> + + * 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 <raeburn@cujo.cygnus.com> * 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 b54e3d2..ccb0842 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); |