diff options
Diffstat (limited to 'gas/config/tc-avr.h')
-rw-r--r-- | gas/config/tc-avr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/config/tc-avr.h b/gas/config/tc-avr.h index 88b7f99..399656f 100644 --- a/gas/config/tc-avr.h +++ b/gas/config/tc-avr.h @@ -123,7 +123,8 @@ extern void avr_cons_fix_new (fragS *,int, int, expressionS *, even when the value can be resolved locally. Do that if linkrelax is turned on */ #define TC_FORCE_RELOCATION(fix) avr_force_relocation (fix) #define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \ - (! SEG_NORMAL (seg) || avr_force_relocation (fix)) + (GENERIC_FORCE_RELOCATION_SUB_SAME (fix, seg) \ + || avr_force_relocation (fix)) extern int avr_force_relocation (struct fix *); /* Values passed to md_apply_fix don't include the symbol value. */ |