diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-10-06 18:36:20 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-10-06 18:36:20 +0000 |
commit | abdad6bc5f1da0411b125ea0aeb27fdfa0381ed7 (patch) | |
tree | d8e9338234181f67bdee5e6ceb0225bee397482b /gas/config/tc-mips.h | |
parent | ebad9e902ca97adf1db3435bc2baad8743f68ba1 (diff) | |
download | gdb-abdad6bc5f1da0411b125ea0aeb27fdfa0381ed7.zip gdb-abdad6bc5f1da0411b125ea0aeb27fdfa0381ed7.tar.gz gdb-abdad6bc5f1da0411b125ea0aeb27fdfa0381ed7.tar.bz2 |
* config/tc-mips.c (cons_fix_new_mips): New function. Turn
BFD_RELOC_64 into BFD_RELOC_32.
* config/tc-mips.h (TC_CONS_FIX_NEW): Define.
(cons_fix_new_mips): Declare.
Diffstat (limited to 'gas/config/tc-mips.h')
-rw-r--r-- | gas/config/tc-mips.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gas/config/tc-mips.h b/gas/config/tc-mips.h index c4f7563..1a8ffdf 100644 --- a/gas/config/tc-mips.h +++ b/gas/config/tc-mips.h @@ -82,3 +82,9 @@ struct mips_cl_insn { #endif extern int tc_get_register PARAMS ((void)); + +#define tc_frob_label(sym) mips_define_label (sym) +extern void mips_define_label PARAMS ((struct symbol *)); + +#define TC_CONS_FIX_NEW cons_fix_new_mips +extern void cons_fix_new_mips (); |