We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2e86ec4 + cbeded9 commit 534fe05Copy full SHA for 534fe05
riscv/csrs.cc
@@ -906,7 +906,7 @@ bool medeleg_csr_t::unlogged_write(const reg_t val) noexcept {
906
| (1 << CAUSE_LOAD_PAGE_FAULT)
907
| (1 << CAUSE_STORE_PAGE_FAULT)
908
| (proc->extension_enabled('H') ? hypervisor_exceptions : 0)
909
- | (proc->extension_enabled(EXT_ZICFILP) ? (1 << CAUSE_SOFTWARE_CHECK_FAULT) : 0)
+ | (1 << CAUSE_SOFTWARE_CHECK_FAULT)
910
;
911
return basic_csr_t::unlogged_write((read() & ~mask) | (val & mask));
912
}
0 commit comments