diff options
author | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-01 22:19:27 +0000 |
---|---|---|
committer | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-01 22:19:27 +0000 |
commit | a5e50b263a54a41239a90930c1a27ecb76531e1b (patch) | |
tree | 5d9ebfb07c088686e1d6ce13941da947e44d8b76 /exec-all.h | |
parent | 173a543b36d0b2491438cf1dcc2c7bb34d59bb5c (diff) | |
download | qemu-a5e50b263a54a41239a90930c1a27ecb76531e1b.zip |
Replace noreturn with QEMU_NORETURN
Thanks to Robert Riebisch for analysis [1]
[1] http://marc.info/?l=qemu-devel&m=123352293319271&w=2
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6492 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'exec-all.h')
-rw-r--r-- | exec-all.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exec-all.h b/exec-all.h index 1b28bbcf15..88f0321d22 100644 --- a/exec-all.h +++ b/exec-all.h @@ -85,7 +85,7 @@ TranslationBlock *tb_gen_code(CPUState *env, target_ulong pc, target_ulong cs_base, int flags, int cflags); void cpu_exec_init(CPUState *env); -void noreturn cpu_loop_exit(void); +void QEMU_NORETURN cpu_loop_exit(void); int page_unprotect(target_ulong address, unsigned long pc, void *puc); void tb_invalidate_phys_page_range(target_phys_addr_t start, target_phys_addr_t end, int is_cpu_write_access); |