diff mbox series

[v5,5/5] linux-user: Enable HWCAP_ASIMDFHM, HWCAP_JSCVT

Message ID 20190219222952.22183-6-richard.henderson@linaro.org
State Superseded
Headers show
Series target/arm: Implement ARMv8.2-FHM | expand

Commit Message

Richard Henderson Feb. 19, 2019, 10:29 p.m. UTC
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

---
 linux-user/elfload.c | 2 ++
 1 file changed, 2 insertions(+)

-- 
2.17.2
diff mbox series

Patch

diff --git a/linux-user/elfload.c b/linux-user/elfload.c
index 3a50d587ff..b9f7cbbdc1 100644
--- a/linux-user/elfload.c
+++ b/linux-user/elfload.c
@@ -602,6 +602,8 @@  static uint32_t get_elf_hwcap(void)
     GET_FEATURE_ID(aa64_fcma, ARM_HWCAP_A64_FCMA);
     GET_FEATURE_ID(aa64_sve, ARM_HWCAP_A64_SVE);
     GET_FEATURE_ID(aa64_pauth, ARM_HWCAP_A64_PACA | ARM_HWCAP_A64_PACG);
+    GET_FEATURE_ID(aa64_fhm, ARM_HWCAP_A64_ASIMDFHM);
+    GET_FEATURE_ID(aa64_jscvt, ARM_HWCAP_A64_JSCVT);
 
 #undef GET_FEATURE_ID