From patchwork Sat Mar 24 16:51:15 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 148523 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 32E17B6EE6 for ; Sun, 25 Mar 2012 04:25:16 +1100 (EST) Received: from localhost ([::1]:45160 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SBUCv-00084K-EJ for incoming@patchwork.ozlabs.org; Sat, 24 Mar 2012 12:52:49 -0400 Received: from eggs.gnu.org ([208.118.235.92]:37570) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SBUBl-0004ly-7k for qemu-devel@nongnu.org; Sat, 24 Mar 2012 12:51:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SBUBi-00057B-U5 for qemu-devel@nongnu.org; Sat, 24 Mar 2012 12:51:36 -0400 Received: from mail-iy0-f173.google.com ([209.85.210.173]:54133) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SBUBi-00054g-Mm for qemu-devel@nongnu.org; Sat, 24 Mar 2012 12:51:34 -0400 Received: by mail-iy0-f173.google.com with SMTP id j26so7261753iaf.4 for ; Sat, 24 Mar 2012 09:51:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=KYafUxvmD2ybNBXSo8q7zSAjJeCivymKtyRpkuQxR5w=; b=OKaEE1Ff0ZQZ3fB9/wGl04bX36jbt+c5WbSzR+00Z/1GGPKDfNyP/tGfWDaxNH6hqT cLOhNqxupZSu+6+ahD77hgK7Z5qE7j3iApKtf/62sSYyDDUKelxEszQGf25ALZ94Fo1P +xqxDI9KyzzdFuw+cZ5PCP5zotJNeYYPJXlwFc9jf9c8IK6u6oJuph68cCsixvyaHu9O difVcfSCCt/jlE1+a3YliYah4UupAzRm4xgEALL0EDV6FnL//srMYSJy84HQQtiSnHHB KSQvt4Mg96Vakv1mgbkhxlLkty18oMpLsL54gkzVeNynm31fPSMRYG71q4pJsl7BW/cN uWQg== Received: by 10.68.219.34 with SMTP id pl2mr38922818pbc.56.1332607893664; Sat, 24 Mar 2012 09:51:33 -0700 (PDT) Received: from pebble.twiddle.home ([173.160.232.49]) by mx.google.com with ESMTPS id q8sm8412101pbi.1.2012.03.24.09.51.32 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 24 Mar 2012 09:51:33 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Sat, 24 Mar 2012 09:51:15 -0700 Message-Id: <1332607875-18895-11-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.7.7.6 In-Reply-To: <1332607875-18895-1-git-send-email-rth@twiddle.net> References: <1332607875-18895-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.210.173 Cc: blauwirbel@gmail.com Subject: [Qemu-devel] [PATCH 10/10] target-alpha: Use noreturn marker in helper.h. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Richard Henderson --- target-alpha/helper.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/target-alpha/helper.h b/target-alpha/helper.h index 9f97c5d..a184def 100644 --- a/target-alpha/helper.h +++ b/target-alpha/helper.h @@ -1,6 +1,6 @@ #include "def-helper.h" -DEF_HELPER_3(excp, void, env, int, int) +DEF_HELPER_3(excp, noreturn, env, int, int) DEF_HELPER_FLAGS_1(load_pcc, TCG_CALL_CONST | TCG_CALL_PURE, i64, env) DEF_HELPER_3(addqv, i64, env, i64, i64)