From patchwork Mon Jan 4 19:25:22 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [5/6] target-alpha: Mark helper_excp as NORETURN. Date: Mon, 04 Jan 2010 09:25:22 -0000 From: Richard Henderson X-Patchwork-Id: 42206 Message-Id: <75a431bd7461635c89cf15f3fa0290e06789c75e.1262645165.git.rth@twiddle.net> To: qemu-devel@nongnu.org Cc: laurent.desnogues@gmail.com, aurelien@aurel32.net Signed-off-by: Richard Henderson --- target-alpha/op_helper.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/target-alpha/op_helper.c b/target-alpha/op_helper.c index 48245dd..a322f12 100644 --- a/target-alpha/op_helper.c +++ b/target-alpha/op_helper.c @@ -24,7 +24,7 @@ /*****************************************************************************/ /* Exceptions processing helpers */ -void helper_excp (int excp, int error) +void QEMU_NORETURN helper_excp (int excp, int error) { env->exception_index = excp; env->error_code = error;