diff options
author | Alan Modra <amodra@gmail.com> | 1999-05-17 03:21:49 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 1999-05-17 03:21:49 +0000 |
commit | ec0f0840fc95bcedb32d41b2708495aa038c4cac (patch) | |
tree | 0a1fd52f16e1b866bfb329433a1c8e8879771fff | |
parent | 6d4d30bb14cca96f185a5cac3642560826b7e523 (diff) | |
download | gdb-ec0f0840fc95bcedb32d41b2708495aa038c4cac.zip gdb-ec0f0840fc95bcedb32d41b2708495aa038c4cac.tar.gz gdb-ec0f0840fc95bcedb32d41b2708495aa038c4cac.tar.bz2 |
*** empty log message ***
-rw-r--r-- | gas/config/obj-coff.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gas/config/obj-coff.c b/gas/config/obj-coff.c index 5639fbe..e8e3df9 100644 --- a/gas/config/obj-coff.c +++ b/gas/config/obj-coff.c @@ -4258,6 +4258,12 @@ fixup_segment (segP, this_segment_type) #endif } /* if pcrel */ +#ifdef MD_APPLY_FIX3 + md_apply_fix3 (fixP, (valueT *) &add_number, this_segment_type); +#else + md_apply_fix (fixP, add_number); +#endif + if (!fixP->fx_bit_fixP && ! fixP->fx_no_overflow) { #ifndef TC_M88K @@ -4294,13 +4300,6 @@ fixup_segment (segP, this_segment_type) (unsigned long) (fragP->fr_address + where)); #endif } /* not a bit fix */ - /* Once this fix has been applied, we don't have to output - anything nothing more need be done. */ -#ifdef MD_APPLY_FIX3 - md_apply_fix3 (fixP, (valueT *) &add_number, this_segment_type); -#else - md_apply_fix (fixP, add_number); -#endif } /* For each fixS in this segment. */ } /* fixup_segment() */ |