diff options
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-mn10300.c | 9 | ||||
-rw-r--r-- | gas/config/tc-mn10300.h | 4 |
2 files changed, 11 insertions, 2 deletions
diff --git a/gas/config/tc-mn10300.c b/gas/config/tc-mn10300.c index 36e6a05..ea5b533 100644 --- a/gas/config/tc-mn10300.c +++ b/gas/config/tc-mn10300.c @@ -2542,6 +2542,15 @@ mn10300_fix_adjustable (fixp) if (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_CODE) return 0; + /* Likewise, do not adjust symbols that won't be merged, or debug + symbols, because they too break relaxation. We do want to adjust + other mergable symbols, like .rodata, because code relaxations + need section-relative symbols to properly relax them. */ + if (! (S_GET_SEGMENT(fixp->fx_addsy)->flags & SEC_MERGE)) + return 0; + if (strncmp (S_GET_SEGMENT (fixp->fx_addsy)->name, ".debug", 6) == 0) + return 0; + return 1; } diff --git a/gas/config/tc-mn10300.h b/gas/config/tc-mn10300.h index 1b88cf2..9e37ea6 100644 --- a/gas/config/tc-mn10300.h +++ b/gas/config/tc-mn10300.h @@ -102,8 +102,8 @@ void mn10300_cons_fix_new PARAMS ((fragS *, int, int, expressionS *)); #define md_number_to_chars number_to_chars_littleendian /* Don't bother to adjust relocs. */ -#define tc_fix_adjustable(FIX) 0 -/* #define tc_fix_adjustable(FIX) mn10300_fix_adjustable (FIX) */ +/* #define tc_fix_adjustable(FIX) 0 */ +#define tc_fix_adjustable(FIX) mn10300_fix_adjustable (FIX) extern bfd_boolean mn10300_fix_adjustable PARAMS ((struct fix *)); /* We do relaxing in the assembler as well as the linker. */ |