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/config/obj-coff.c | |
parent | 483971bdbfba1ce02604cdfaf22648d46f71eef3 (diff) | |
download | binutils-gdb-7a55f462682ce756503ae7490c972717f1153b6e.tar.gz |
* config/obj-coff.c (write_object_file): Don't treat h8300 and z8k specially
with regard to fixups.
Diffstat (limited to 'gas/config/obj-coff.c')
-rw-r--r-- | gas/config/obj-coff.c | 4 |
1 files changed, 3 insertions, 1 deletions
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); |