From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NSFV9-0002gg-Jb for qemu-devel@nongnu.org; Tue, 05 Jan 2010 14:55:35 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NSFV7-0002fF-F1 for qemu-devel@nongnu.org; Tue, 05 Jan 2010 14:55:33 -0500 Received: from [199.232.76.173] (port=43026 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NSFV6-0002fB-UN for qemu-devel@nongnu.org; Tue, 05 Jan 2010 14:55:33 -0500 Received: from mx20.gnu.org ([199.232.41.8]:36451) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NSFV1-0005Du-UR for qemu-devel@nongnu.org; Tue, 05 Jan 2010 14:55:29 -0500 Received: from are.twiddle.net ([75.149.56.221]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NRxtC-0003YU-Pv for qemu-devel@nongnu.org; Mon, 04 Jan 2010 20:07:15 -0500 Message-Id: <75a431bd7461635c89cf15f3fa0290e06789c75e.1262645165.git.rth@twiddle.net> In-Reply-To: References: From: Richard Henderson Date: Mon, 4 Jan 2010 11:25:22 -0800 Subject: [Qemu-devel] [PATCH 5/6] target-alpha: Mark helper_excp as NORETURN. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , 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; -- 1.6.5.2