On 27/6/24 20:03, Richard Henderson wrote:
Reported-by: Brad Smith <b...@comstyle.com>
Signed-off-by: Richard Henderson <richard.hender...@linaro.org>
---
  util/cpuinfo-riscv.c | 7 +++++++
  1 file changed, 7 insertions(+)

diff --git a/util/cpuinfo-riscv.c b/util/cpuinfo-riscv.c
index 6b97100620..abf799794f 100644
--- a/util/cpuinfo-riscv.c
+++ b/util/cpuinfo-riscv.c
@@ -13,7 +13,14 @@ static void sigill_handler(int signo, siginfo_t *si, void 
*data)
  {
      /* Skip the faulty instruction */
      ucontext_t *uc = (ucontext_t *)data;
+
+#ifdef __linux__
      uc->uc_mcontext.__gregs[REG_PC] += 4;
+#elif defined(__OpenBSD__)
+    uc->sc_sepc += 4;

To the best of my non-existent OpenBSD knowledge reviewing corresponding
https://github.com/openbsd/src/blob/master/sys/arch/riscv64/riscv64/sig_machdep.c,
Reviewed-by: Philippe Mathieu-Daudé <phi...@linaro.org>

+#else
+# error Unsupported OS
+#endif
got_sigill = 1;
  }


Reply via email to