|
From: Andreas A. <ar...@so...> - 2026-03-17 15:58:10
|
https://sourceware.org/cgit/valgrind/commit/?id=d991cba0eea3402bf9ae1c41762814b733c4e805 commit d991cba0eea3402bf9ae1c41762814b733c4e805 Author: Andreas Arnez <ar...@li...> Date: Tue Mar 17 16:21:27 2026 +0100 s390x: Mention "mi3" in show_hwcaps() When the miscellaneous-instruction-extensions facility 3 is present, it's missing from the list shown by show_hwcaps(). Fix that. Diff: --- VEX/priv/main_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/VEX/priv/main_main.c b/VEX/priv/main_main.c index b9a18a9d28..5e3cb7ad80 100644 --- a/VEX/priv/main_main.c +++ b/VEX/priv/main_main.c @@ -1915,6 +1915,7 @@ static const HChar* show_hwcaps_s390x ( UInt hwcaps ) { VEX_HWCAPS_S390X_VXD, "vxd" }, { VEX_HWCAPS_S390X_MSA8, "msa8" }, { VEX_HWCAPS_S390X_MSA9, "msa9" }, + { VEX_HWCAPS_S390X_MI3, "mi3" }, { VEX_HWCAPS_S390X_VXE3, "vxe3" }, { VEX_HWCAPS_S390X_MSA12, "msa12" }, }; |