mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
Add QEMU_NORETURN to function cpu_io_recompile
cpu_io_recompile terminates by calling either cpu_abort or cpu_resume_from_signal which both never return. Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
38c30fb7a5
commit
4266717d69
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ int cpu_gen_code(CPUArchState *env, struct TranslationBlock *tb,
|
|||
int cpu_restore_state(struct TranslationBlock *tb,
|
||||
CPUArchState *env, uintptr_t searched_pc);
|
||||
void QEMU_NORETURN cpu_resume_from_signal(CPUArchState *env1, void *puc);
|
||||
void cpu_io_recompile(CPUArchState *env, void *retaddr);
|
||||
void QEMU_NORETURN cpu_io_recompile(CPUArchState *env, void *retaddr);
|
||||
TranslationBlock *tb_gen_code(CPUArchState *env,
|
||||
target_ulong pc, target_ulong cs_base, int flags,
|
||||
int cflags);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue