mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-22 14:45:35 +00:00
target/riscv: cpu_helper: Remove compile time XLEN checks
Backports f08c7ff3dc552d423439284a725f384b85b99062
This commit is contained in:
parent
ea716ff2db
commit
90abfa7c11
|
@ -441,11 +441,13 @@ restart:
|
|||
return TRANSLATE_PMP_FAIL;
|
||||
}
|
||||
|
||||
#if defined(TARGET_RISCV32)
|
||||
target_ulong pte = address_space_ldl(cs->as, pte_addr, attrs, &res);
|
||||
#elif defined(TARGET_RISCV64)
|
||||
target_ulong pte = address_space_ldq(cs->as, pte_addr, attrs, &res);
|
||||
#endif
|
||||
target_ulong pte;
|
||||
if (riscv_cpu_is_32bit(env)) {
|
||||
pte = address_space_ldl(cs->as, pte_addr, attrs, &res);
|
||||
} else {
|
||||
pte = address_space_ldq(cs->as, pte_addr, attrs, &res);
|
||||
}
|
||||
|
||||
if (res != MEMTX_OK) {
|
||||
return TRANSLATE_FAIL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue