From: Stefan Weil Date: Sun, 18 Mar 2012 22:16:03 +0000 (+0100) Subject: target-mips: Add compiler attribute to some functions which don't return X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=59821ae8025dbf61323343fc074513d30013c9c0;p=qemu.git target-mips: Add compiler attribute to some functions which don't return helper_raise_exception_err does not return, nor do helper_raise_exception and do_unaligned_access. Cc: Aurelien Jarno Signed-off-by: Stefan Weil Reviewed-by: Andreas Färber Signed-off-by: Blue Swirl --- diff --git a/target-mips/helper.h b/target-mips/helper.h index 442f684697..76fb451e77 100644 --- a/target-mips/helper.h +++ b/target-mips/helper.h @@ -1,7 +1,7 @@ #include "def-helper.h" -DEF_HELPER_2(raise_exception_err, void, i32, int) -DEF_HELPER_1(raise_exception, void, i32) +DEF_HELPER_2(raise_exception_err, noreturn, i32, int) +DEF_HELPER_1(raise_exception, noreturn, i32) #ifdef TARGET_MIPS64 DEF_HELPER_3(ldl, tl, tl, tl, int) diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index 3a207312a4..ce01225e6c 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -2292,7 +2292,8 @@ void helper_wait (void) #if !defined(CONFIG_USER_ONLY) -static void do_unaligned_access (target_ulong addr, int is_write, int is_user, void *retaddr); +static void QEMU_NORETURN do_unaligned_access(target_ulong addr, int is_write, + int is_user, void *retaddr); #define MMUSUFFIX _mmu #define ALIGNED_ONLY