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-d10v.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-d10v.h')
-rw-r--r-- | gas/config/tc-d10v.h | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/gas/config/tc-d10v.h b/gas/config/tc-d10v.h index 6815950..53fe66e 100644 --- a/gas/config/tc-d10v.h +++ b/gas/config/tc-d10v.h @@ -19,8 +19,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "write.h" /* For the definition of fixS. */ - #define TC_D10V #define TARGET_BYTES_BIG_ENDIAN 0 @@ -35,8 +33,9 @@ #define TARGET_FORMAT "elf32-d10v" /* Call md_pcrel_from_section, not md_pcrel_from. */ -#define MD_PCREL_FROM_SECTION(FIXP, SEC) md_pcrel_from_section(FIXP, SEC) -long md_pcrel_from_section PARAMS ((fixS *, segT)); +#define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from_section(FIX, SEC) +struct fix; +long md_pcrel_from_section PARAMS ((struct fix *, segT)); /* Permit temporary numeric labels. */ #define LOCAL_LABELS_FB 1 @@ -58,9 +57,17 @@ int d10v_cleanup PARAMS ((void)); S_SET_VALUE (sym, (valueT) frag_now_fix ()); \ } while (0) -#define obj_fix_adjustable(fixP) d10v_fix_adjustable(fixP) -boolean d10v_fix_adjustable PARAMS ((fixS *)); -#define TC_FORCE_RELOCATION(fixp) d10v_force_relocation(fixp) -extern int d10v_force_relocation PARAMS ((fixS *)); +#define tc_fix_adjustable(FIX) d10v_fix_adjustable(FIX) +boolean d10v_fix_adjustable PARAMS ((struct fix *)); + +#define TC_FORCE_RELOCATION(FIX) d10v_force_relocation(FIX) +extern int d10v_force_relocation PARAMS ((struct fix *)); + +/* Values passed to md_apply_fix3 don't include the symbol value. */ +#define MD_APPLY_SYM_VALUE(FIX) 0 + +/* No shared lib support, so we don't need to ensure externally + visible symbols can be overridden. */ +#define EXTERN_FORCE_RELOC 0 #define md_flush_pending_output d10v_cleanup |