From: Michael Tokarev Date: Wed, 24 Apr 2024 20:18:56 +0000 (+0300) Subject: target/loongarch/cpu.c: typo fix: expection X-Git-Tag: v8.2.4~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7e5f59326ddfef04154a9f4ae1f97893ce8aa142;p=thirdparty%2Fqemu.git target/loongarch/cpu.c: typo fix: expection Fixes: 1590154ee437 ("target/loongarch: Fix qemu-system-loongarch64 assert failed with the option '-d int'") Fixes: ef9b43bb8e2d (in stable-8.2) Signed-off-by: Michael Tokarev Reviewed-by: Richard Henderson (cherry picked from commit 0cbb322f70e8a87e4acbffecef5ea8f9448f3513) Signed-off-by: Michael Tokarev --- diff --git a/target/loongarch/cpu.c b/target/loongarch/cpu.c index 570201e6162..337f04b201b 100644 --- a/target/loongarch/cpu.c +++ b/target/loongarch/cpu.c @@ -82,7 +82,7 @@ void G_NORETURN do_raise_exception(CPULoongArchState *env, { CPUState *cs = env_cpu(env); - qemu_log_mask(CPU_LOG_INT, "%s: expection: %d (%s)\n", + qemu_log_mask(CPU_LOG_INT, "%s: exception: %d (%s)\n", __func__, exception, loongarch_exception_name(exception));