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:
Richard Henderson 2018-11-16 21:41:20 -05:00 committed by Lioncash
parent 3edbb8180a
commit 295dd866b4
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7

View File

@ -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;
}