From patchwork Mon Jan 4 19:25:22 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 42206 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 95988B6EE8 for ; Wed, 6 Jan 2010 08:59:00 +1100 (EST) Received: from localhost ([127.0.0.1]:52333 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NSHQX-0000G5-Sd for incoming@patchwork.ozlabs.org; Tue, 05 Jan 2010 16:58:57 -0500 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 Received: by are.twiddle.net (Postfix, from userid 5000) id CAA45E24; Mon, 4 Jan 2010 15:08:37 -0800 (PST) Message-Id: <75a431bd7461635c89cf15f3fa0290e06789c75e.1262645165.git.rth@twiddle.net> In-Reply-To: References: From: Richard Henderson Date: Mon, 4 Jan 2010 11:25:22 -0800 To: qemu-devel@nongnu.org X-detected-operating-system: by mx20.gnu.org: GNU/Linux 2.6 (newer, 2) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) Cc: laurent.desnogues@gmail.com, aurelien@aurel32.net Subject: [Qemu-devel] [PATCH 5/6] target-alpha: Mark helper_excp as NORETURN. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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;