diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-07-29 10:45:10 -1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-09-21 19:36:44 -0700 |
commit | fa947a667fceab02f9f85fc99f54aebcc9ae6b51 (patch) | |
tree | d739930621271a7991592e3742b63db15f812a9d /target/hppa | |
parent | 220b2da7f34c29412db0dc0182e36fce67c8a9e4 (diff) | |
download | qemu-fa947a667fceab02f9f85fc99f54aebcc9ae6b51.zip qemu-fa947a667fceab02f9f85fc99f54aebcc9ae6b51.tar.gz qemu-fa947a667fceab02f9f85fc99f54aebcc9ae6b51.tar.bz2 |
hw/core: Make do_unaligned_access noreturn
While we may have had some thought of allowing system-mode
to return from this hook, we have no guests that require this.
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/hppa')
-rw-r--r-- | target/hppa/cpu.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/target/hppa/cpu.c b/target/hppa/cpu.c index e8edd18..89cba9d 100644 --- a/target/hppa/cpu.c +++ b/target/hppa/cpu.c @@ -72,9 +72,10 @@ static void hppa_cpu_disas_set_info(CPUState *cs, disassemble_info *info) } #ifndef CONFIG_USER_ONLY -static void hppa_cpu_do_unaligned_access(CPUState *cs, vaddr addr, - MMUAccessType access_type, - int mmu_idx, uintptr_t retaddr) +static void QEMU_NORETURN +hppa_cpu_do_unaligned_access(CPUState *cs, vaddr addr, + MMUAccessType access_type, int mmu_idx, + uintptr_t retaddr) { HPPACPU *cpu = HPPA_CPU(cs); CPUHPPAState *env = &cpu->env; |