From patchwork Thu Dec 6 00:36:33 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vladimir Makarov X-Patchwork-Id: 204041 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 B9B852C018B for ; Thu, 6 Dec 2012 11:36:46 +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=1355359008; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=V52i69c t5/+uzHAzbJWLEEp4yWY=; b=N2G8kHRP9sKVoYjwyqSB25/nNYDAAz5+F9LBNRL Een2u3T+ruk8JsyZxU2JMgOO0/fgv5qa+vQwgT+m8Y89gQ6fPD1KJm+nCsHAxl+t 6tuYTc08nwhxXUZ2I/h87ZoJgxJVw+Pd1+AUqUXLnAt8LnA2J8IvmZcey7YjaC38 xE8w= 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:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:Content-Type:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=nakvseaJ9IgHtowecpDeGGedoEeC3eXj8l1Vh2m19DUXfz+4QIz4TAUOCCANhb KrrzaQOyFMgPoBt+78CgELVkilfl4HAENKQYEGOJuJUEz3Pg6zIhRT/KAQ449fkZ WKJtbhGpniLF56QVehOzRA2RO23/Hfo7+a5LhPAE0Sukw=; Received: (qmail 3800 invoked by alias); 6 Dec 2012 00:36:43 -0000 Received: (qmail 3656 invoked by uid 22791); 6 Dec 2012 00:36:43 -0000 X-SWARE-Spam-Status: No, hits=-6.4 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, KHOP_SPAMHAUS_DROP, RCVD_IN_DNSWL_HI, RCVD_IN_HOSTKARMA_W, RP_MATCHES_RCVD, SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 06 Dec 2012 00:36:35 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qB60aZtV031164 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 5 Dec 2012 19:36:35 -0500 Received: from Mair.local (vpn-9-89.rdu.redhat.com [10.11.9.89]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id qB60aYXl015625 for ; Wed, 5 Dec 2012 19:36:34 -0500 Message-ID: <50BFE891.6020908@redhat.com> Date: Wed, 05 Dec 2012 19:36:33 -0500 From: Vladimir Makarov User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: GCC Patches Subject: [lra] a tiny patch to fix ARM bootstrap X-IsSubscribed: yes 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 The following tiny patch is to fix ARM bootstrap failure. The patch was successfully bootstrapped on ARM. Committed as rev. 194228. 2012-12-05 Vladimir Makarov * lra-constraints.c (check_and_process_move): Add ATTRIBUTE_UNUSED to parameter sec_mem_p. Index: lra-constraints.c =================================================================== --- lra-constraints.c (revision 194180) +++ lra-constraints.c (working copy) @@ -856,7 +856,7 @@ emit_spill_move (bool to_p, rtx mem_pseu SECONDARY_MEMORY_NEEDED says to use secondary memory through SEC_MEM_P. */ static bool -check_and_process_move (bool *change_p, bool *sec_mem_p) +check_and_process_move (bool *change_p, bool *sec_mem_p ATTRIBUTE_UNUSED) { int sregno, dregno; rtx dest, src, dreg, sreg, old_sreg, new_reg, before, scratch_reg;