On 4/6/23 00:25, Weiwei Li wrote:
  void riscv_cpu_set_mode(CPURISCVState *env, target_ulong newpriv)
  {
-    if (newpriv > PRV_M) {
+    if (newpriv > PRV_M || newpriv == PRV_H) {
          g_assert_not_reached();
      }

Nit: if (test) { assert_not_reached } -> assert(!test).

which emits a more helpful error message before abort.


r~

Reply via email to