From f122319e0af44e6caa2c9163b45746aa4efb11e6 Mon Sep 17 00:00:00 2001 From: Chao-ying Fu Date: Thu, 13 Jun 2013 20:58:44 +0000 Subject: [PATCH] 2013-06-13 Chao-ying Fu * config/tc-mips.c (ISA_SUPPORTS_VIRT_ASE): Support micromips. (ISA_SUPPORTS_VIRT64_ASE): Support 64-bit micromips. --- gas/ChangeLog | 5 +++++ gas/config/tc-mips.c | 7 +++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 21133563c60..4ce92cebe59 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2013-06-13 Chao-ying Fu + + * config/tc-mips.c (ISA_SUPPORTS_VIRT_ASE): Support micromips. + (ISA_SUPPORTS_VIRT64_ASE): Support 64-bit micromips. + 2013-06-13 Nick Clifton PR gas/15602 diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 45751dcac74..468e40f5b2a 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -381,9 +381,12 @@ static int file_ase_mt; static int file_ase_virt; #define ISA_SUPPORTS_VIRT_ASE (mips_opts.isa == ISA_MIPS32R2 \ - || mips_opts.isa == ISA_MIPS64R2) + || mips_opts.isa == ISA_MIPS64R2 \ + || mips_opts.micromips) -#define ISA_SUPPORTS_VIRT64_ASE (mips_opts.isa == ISA_MIPS64R2) +#define ISA_SUPPORTS_VIRT64_ASE (mips_opts.isa == ISA_MIPS64R2 \ + || (mips_opts.micromips \ + && ISA_HAS_64BIT_REGS (mips_opts.isa))) /* The argument of the -march= flag. The architecture we are assembling. */ static int file_mips_arch = CPU_UNKNOWN; -- 2.30.2