* config/tc-mips.c (ISA_SUPPORTS_MCU_ASE): Also set if microMIPS

mode.
This commit is contained in:
Maciej W. Rozycki 2011-11-16 12:29:56 +00:00
parent 2906b03761
commit 9ddc84cc26
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-11-16 Maciej W. Rozycki <macro@codesourcery.com>
* config/tc-mips.c (ISA_SUPPORTS_MCU_ASE): Also set if microMIPS
mode.
2011-11-16 Maciej W. Rozycki <macro@codesourcery.com>
* config/tc-mips.c (macro_build_jalr): Reverse a negative

View File

@ -370,7 +370,8 @@ static int file_ase_mt;
|| mips_opts.isa == ISA_MIPS64R2)
#define ISA_SUPPORTS_MCU_ASE (mips_opts.isa == ISA_MIPS32R2 \
|| mips_opts.isa == ISA_MIPS64R2)
|| mips_opts.isa == ISA_MIPS64R2 \
|| mips_opts.micromips)
/* The argument of the -march= flag. The architecture we are assembling. */
static int file_mips_arch = CPU_UNKNOWN;