diff options
author | Dawn Perchik <dawn@cygnus> | 1997-02-23 23:46:12 +0000 |
---|---|---|
committer | Dawn Perchik <dawn@cygnus> | 1997-02-23 23:46:12 +0000 |
commit | 8d8a790b81db145ec9b9bb534a7fad8f514fc3ee (patch) | |
tree | b96c916a2a2d0e6b7ecbc6e6ddfa646dee93a974 /gas/config/tc-mips.h | |
parent | 7b9f3d46c6a31dc1833c1ce988e0b9cd43e712c6 (diff) | |
download | gdb-8d8a790b81db145ec9b9bb534a7fad8f514fc3ee.zip gdb-8d8a790b81db145ec9b9bb534a7fad8f514fc3ee.tar.gz gdb-8d8a790b81db145ec9b9bb534a7fad8f514fc3ee.tar.bz2 |
* itbl-ops.c: Add test for itbl_have_entries.
* config/tc-mips.c: Remove test for itbl_have_entries.
* config/tc-mips.h: Define tc_init_after_args to mips_init_after_args.
Diffstat (limited to 'gas/config/tc-mips.h')
-rw-r--r-- | gas/config/tc-mips.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gas/config/tc-mips.h b/gas/config/tc-mips.h index a069edc..967ffc4 100644 --- a/gas/config/tc-mips.h +++ b/gas/config/tc-mips.h @@ -25,6 +25,11 @@ #define TC_MIPS +/* Default to big endian. */ +#ifndef TARGET_BYTES_BIG_ENDIAN +#define TARGET_BYTES_BIG_ENDIAN 1 +#endif + #define TARGET_ARCH bfd_arch_mips #define ONLY_STANDARD_ESCAPES @@ -57,11 +62,6 @@ extern int mips_relax_frag PARAMS ((struct frag *, long)); embedded PIC code. */ #define DIFF_EXPR_OK -/* Default to big endian. */ -#ifndef TARGET_BYTES_BIG_ENDIAN -#define TARGET_BYTES_BIG_ENDIAN 1 -#endif - /* The endianness of the target format may change based on command line arguments. */ #define TARGET_FORMAT mips_target_format() @@ -78,6 +78,9 @@ struct mips_cl_insn extern int tc_get_register PARAMS ((int frame)); +#define tc_init_after_args() mips_init_after_args() +extern void mips_init_after_args PARAMS ((void)); + #define md_parse_long_option(arg) mips_parse_long_option (arg) extern int mips_parse_long_option PARAMS ((const char *)); |