mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-03-23 06:25:12 +00:00
target/arm: Fix typo in tlbi_aa64_vmalle1_write
This would cause an infinite recursion or loop. Backports commit 09a86dfa3f07904792a85990b0b41939417785cd from qemu
This commit is contained in:
parent
3edbb8180a
commit
295dd866b4
|
@ -2806,7 +2806,7 @@ static void tlbi_aa64_vmalle1_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
CPUState *cs = ENV_GET_CPU(env);
|
||||
|
||||
if (tlb_force_broadcast(env)) {
|
||||
tlbi_aa64_vmalle1_write(env, NULL, value);
|
||||
tlbi_aa64_vmalle1is_write(env, NULL, value);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue