* config/tc-v850.h (tc_fix_adjustable): Don't adjust TDA relocs.

Fixing more tda stuff.
This commit is contained in:
Jeff Law 1996-10-24 20:32:36 +00:00
parent ac2321b633
commit 3723a1a9f1
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,9 @@
start-sanitize-v850
Thu Oct 24 14:31:04 1996 Jeffrey A Law (law@cygnus.com)
* config/tc-v850.h (tc_fix_adjustable): Don't adjust TDA relocs.
end-sanitize-v850
Wed Oct 23 18:20:29 1996 Ian Lance Taylor <ian@cygnus.com>
* config/tc-ppc.c (md_apply_fix3): Give a better warning message

View File

@ -47,4 +47,8 @@
#define md_number_to_chars number_to_chars_littleendian
#define tc_fix_adjustable(FIX) (!(FIX)->fx_pcrel)
/* In theory, we could adjust TDA relocs; it just means more hackery
to bfd/elf32-v850.c. Not adjusting them is easier at the moment. */
#define tc_fix_adjustable(FIX) \
(!(FIX)->fx_pcrel && (FIX)->fx_r_type != BFD_RELOC_V850_TDA_OFFSET)