From patchwork Thu Oct 18 15:35:44 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Botcazou X-Patchwork-Id: 192355 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id AC1F62C0092 for ; Fri, 19 Oct 2012 02:39:17 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1351179558; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Received:From:To:Subject:Date:Message-ID:User-Agent:MIME-Version: Content-Type:Content-Transfer-Encoding:Mailing-List:Precedence: List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=c/gjZkWCwRDC3y4o3p1d14KXLtA=; b=I2L0LoN5TN+j2hG MhwEjnlDaydBiGc7op/RUeW2EuJKtKGbSMOalgb8eCYuU6DU/FFa2Y+THZnzCnjU KyZdoKUameBxxruAPPZswquCZXm1hTWvPMSjeW3q60/DwFyYVWSMAAkiq9MgdYXo qGjJ7W2K9M7vmzSoeNB/u7+gkXy4= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Received:From:To:Subject:Date:Message-ID:User-Agent:MIME-Version:Content-Type:Content-Transfer-Encoding:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=qqtkxv/NpDVaT+fBClE5wBYfGZALoVjhNFzGFFBPjT67kGrIETGinnje5LD4FZ 4P/9BEArXzjHSPonyXMo4tQL8C+w0iGl7FMu7F35FYAkpMov+/ojwj5S41yu8hrC b8soGbEja2QQefhepQYrjyQwZFZtwUuKu9OOKBVepn0wc=; Received: (qmail 27089 invoked by alias); 18 Oct 2012 15:39:12 -0000 Received: (qmail 26963 invoked by uid 22791); 18 Oct 2012 15:39:10 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from mel.act-europe.fr (HELO mel.act-europe.fr) (194.98.77.210) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 18 Oct 2012 15:39:00 +0000 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id C6E2F290486 for ; Thu, 18 Oct 2012 17:38:58 +0200 (CEST) Received: from mel.act-europe.fr ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VwslnIDRH+MI for ; Thu, 18 Oct 2012 17:38:58 +0200 (CEST) Received: from polaris.localnet (bon31-6-88-161-99-133.fbx.proxad.net [88.161.99.133]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mel.act-europe.fr (Postfix) with ESMTP id 84C50290483 for ; Thu, 18 Oct 2012 17:38:58 +0200 (CEST) From: Eric Botcazou To: gcc-patches@gcc.gnu.org Subject: Restore bootstrap on IA-64/Linux Date: Thu, 18 Oct 2012 17:35:44 +0200 Message-ID: <1641291.MCZ3cPdav1@polaris> User-Agent: KMail/4.7.2 (Linux/3.1.10-1.16-desktop; KDE/4.7.2; x86_64; ; ) MIME-Version: 1.0 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org An unused variable left in except.c after Easwaran's recent patch. Tested on ia64-suse-linux, applied on the mainline as obvious. 2012-10-18 Eric Botcazou * except.c (sjlj_emit_function_enter): Remove unused variable. Index: except.c =================================================================== --- except.c (revision 192526) +++ except.c (working copy) @@ -1153,7 +1153,7 @@ sjlj_emit_function_enter (rtx dispatch_l if (dispatch_label) { #ifdef DONT_USE_BUILTIN_SETJMP - rtx x, last; + rtx x; x = emit_library_call_value (setjmp_libfunc, NULL_RTX, LCT_RETURNS_TWICE, TYPE_MODE (integer_type_node), 1, plus_constant (Pmode, XEXP (fc, 0),