diff options
author | Alan Modra <amodra@gmail.com> | 2002-09-05 00:01:18 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-09-05 00:01:18 +0000 |
commit | a161fe53205dbc69d42f5a123b2b04346724b2de (patch) | |
tree | bb28dde4f0deee90db9e7a8247fb82dd2e4933fe /gas/config/tc-frv.h | |
parent | 8f8429869e9a245fe48b8c69bde2bffa3d6c7734 (diff) | |
download | gdb-a161fe53205dbc69d42f5a123b2b04346724b2de.zip gdb-a161fe53205dbc69d42f5a123b2b04346724b2de.tar.gz gdb-a161fe53205dbc69d42f5a123b2b04346724b2de.tar.bz2 |
gas reloc rewrite.
Diffstat (limited to 'gas/config/tc-frv.h')
-rw-r--r-- | gas/config/tc-frv.h | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/gas/config/tc-frv.h b/gas/config/tc-frv.h index b399cd93..843a934 100644 --- a/gas/config/tc-frv.h +++ b/gas/config/tc-frv.h @@ -34,10 +34,6 @@ #define TARGET_BYTES_BIG_ENDIAN 1 -/* call md_pcrel_from_section, not md_pcrel_from */ -long md_pcrel_from_section PARAMS ((struct fix *, segT)); -#define MD_PCREL_FROM_SECTION(FIXP, SEC) md_pcrel_from_section (FIXP, SEC) - /* Permit temporary numeric labels. */ #define LOCAL_LABELS_FB 1 @@ -46,6 +42,9 @@ long md_pcrel_from_section PARAMS ((struct fix *, segT)); /* We don't need to handle .word strangely. */ #define WORKING_DOT_WORD +/* Values passed to md_apply_fix3 don't include the symbol value. */ +#define MD_APPLY_SYM_VALUE(FIX) 0 + #define md_apply_fix3 gas_cgen_md_apply_fix3 extern void frv_tomcat_workaround PARAMS ((void)); @@ -56,15 +55,10 @@ extern void frv_tomcat_workaround PARAMS ((void)); extern long frv_relax_frag PARAMS ((fragS *, long)); #define md_relax_frag(segment, fragP, stretch) frv_relax_frag(fragP, stretch) -#define obj_fix_adjustable(fixP) frv_fix_adjustable (fixP) +#define tc_fix_adjustable(FIX) frv_fix_adjustable (FIX) +struct fix; extern boolean frv_fix_adjustable PARAMS ((struct fix *)); -#ifdef OBJ_ELF -/* This arranges for gas/write.c to not apply a relocation if - obj_fix_adjustable() says it is not adjustable. */ -#define TC_FIX_ADJUSTABLE(fixP) obj_fix_adjustable (fixP) -#endif - /* When relaxing, we need to emit various relocs we otherwise wouldn't. */ #define TC_FORCE_RELOCATION(fix) frv_force_relocation (fix) extern int frv_force_relocation PARAMS ((struct fix *)); @@ -80,7 +74,7 @@ void frv_frob_label PARAMS ((symbolS *)); #define md_cgen_record_fixup_exp frv_cgen_record_fixup_exp /* Call md_pcrel_from_section(), not md_pcrel_from(). */ -#define MD_PCREL_FROM_SECTION(FIXP, SEC) md_pcrel_from_section (FIXP, SEC) +#define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from_section (FIX, SEC) extern long md_pcrel_from_section PARAMS ((struct fix *, segT)); /* After all of the symbols have been adjusted, go over the file looking |