mirror of https://github.com/xemu-project/xemu.git
target/arm: Fix typo in tlbi_aa64_vmalle1_write
This would cause an infinite recursion or loop. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Message-id: 20181110121711.15257-1-richard.henderson@linaro.org Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
e9ac8e84f0
commit
09a86dfa3f
|
@ -3155,7 +3155,7 @@ static void tlbi_aa64_vmalle1_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||||
CPUState *cs = ENV_GET_CPU(env);
|
CPUState *cs = ENV_GET_CPU(env);
|
||||||
|
|
||||||
if (tlb_force_broadcast(env)) {
|
if (tlb_force_broadcast(env)) {
|
||||||
tlbi_aa64_vmalle1_write(env, NULL, value);
|
tlbi_aa64_vmalle1is_write(env, NULL, value);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue