mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-03 16:35:46 +00:00
target/riscv/csr.c : add space before the open parenthesis '('
Fix code style. Space required before the open parenthesis '('. Backports 422819776101520cb56658ee5facf926526cf870
This commit is contained in:
parent
9d47840784
commit
757608b77c
|
@ -830,7 +830,7 @@ static int write_satp(CPURISCVState *env, int csrno, target_ulong val)
|
|||
if (env->priv == PRV_S && get_field(env->mstatus, MSTATUS_TVM)) {
|
||||
return -RISCV_EXCP_ILLEGAL_INST;
|
||||
} else {
|
||||
if((val ^ env->satp) & SATP_ASID) {
|
||||
if ((val ^ env->satp) & SATP_ASID) {
|
||||
tlb_flush(env_cpu(env));
|
||||
}
|
||||
env->satp = val;
|
||||
|
|
Loading…
Reference in a new issue