diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-12-14 01:32:11 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2020-12-17 10:34:59 +0100 |
commit | 7d9a3d96f57dfed441622ebb9d1516473d51f919 (patch) | |
tree | 7b1a69e4ee87ec080988905dc88bc996bcced60a /linux-user/elfload.c | |
parent | 6dd97bfc1fd4453c4855109dd508a78617527a6e (diff) | |
download | qemu-7d9a3d96f57dfed441622ebb9d1516473d51f919.zip qemu-7d9a3d96f57dfed441622ebb9d1516473d51f919.tar.gz qemu-7d9a3d96f57dfed441622ebb9d1516473d51f919.tar.bz2 |
linux-user/elfload: Rename MIPS GET_FEATURE() as GET_FEATURE_INSN()
We want to add macros similar to GET_FEATURE().
As this one use the 'insn_flags' field, rename it
GET_FEATURE_INSN().
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20201214003215.344522-3-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/elfload.c')
-rw-r--r-- | linux-user/elfload.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux-user/elfload.c b/linux-user/elfload.c index aae28fd..0e1d7e7 100644 --- a/linux-user/elfload.c +++ b/linux-user/elfload.c @@ -989,7 +989,7 @@ enum { #define ELF_HWCAP get_elf_hwcap() -#define GET_FEATURE(_flag, _hwcap) \ +#define GET_FEATURE_INSN(_flag, _hwcap) \ do { if (cpu->env.insn_flags & (_flag)) { hwcaps |= _hwcap; } } while (0) static uint32_t get_elf_hwcap(void) @@ -997,13 +997,13 @@ static uint32_t get_elf_hwcap(void) MIPSCPU *cpu = MIPS_CPU(thread_cpu); uint32_t hwcaps = 0; - GET_FEATURE(ISA_MIPS32R6 | ISA_MIPS64R6, HWCAP_MIPS_R6); - GET_FEATURE(ASE_MSA, HWCAP_MIPS_MSA); + GET_FEATURE_INSN(ISA_MIPS32R6 | ISA_MIPS64R6, HWCAP_MIPS_R6); + GET_FEATURE_INSN(ASE_MSA, HWCAP_MIPS_MSA); return hwcaps; } -#undef GET_FEATURE +#undef GET_FEATURE_INSN #endif /* TARGET_MIPS */ |