From patchwork Wed Nov 23 17:57:17 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Law X-Patchwork-Id: 698454 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]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3tP96P6WbMz9t0v for ; Thu, 24 Nov 2016 04:57:38 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="x7GlHPLb"; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to :from:subject:message-id:date:mime-version:content-type; q=dns; s=default; b=u7bq37XT/Uxf/mNfKu6fPOK09aHvY2GKjgiHjMV2RWgedcJC8c w57tjuE4oi2gTWEwnSp+mdpatVhxihrG43bucR3Akj3mN64SMoAQDGyDzh5SfJCo CktQy+p7/rf2YX183qupgR8Le+6hwVWTVaBXOEmFfsOBOtEZitGP0H1SQ= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to :from:subject:message-id:date:mime-version:content-type; s= default; bh=pTNSA73zobf8Rdtur2g4aiAk0bQ=; b=x7GlHPLbkJ0QW/VxNSQJ x3KtViDE1gnZ6KgoPrZpse+OpegX2wHPCUqhg+ine9HZvBrtgW68wdxS2wCD/V4m 4zXdgVWvBnrS0nOOKM1Lkq2BNt2UG9fdFcA/Uc0cXhoWCkJz9yd8t9APlf96GVtF s+sbfjcI++sjEwbEssLcvEA= Received: (qmail 120010 invoked by alias); 23 Nov 2016 17:57:30 -0000 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 Received: (qmail 119997 invoked by uid 89); 23 Nov 2016 17:57:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.8 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 23 Nov 2016 17:57:19 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 813604E339 for ; Wed, 23 Nov 2016 17:57:18 +0000 (UTC) Received: from localhost.localdomain (ovpn-116-64.phx2.redhat.com [10.3.116.64]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id uANHvIw3005637 for ; Wed, 23 Nov 2016 12:57:18 -0500 To: gcc-patches From: Jeff Law Subject: Fix ia64 builds Message-ID: Date: Wed, 23 Nov 2016 10:57:17 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 X-IsSubscribed: yes The recent rtx_insn * changes mucked up ia64 in a trivial way. The definition of ia64_emit_insn_before was changed, but not the prototype. This results in a build error. Fixed in the obvious way. Applying to the trunk. Jeff commit f491be0d30b8e0063e54972497b8e049482f03b8 Author: law Date: Wed Nov 23 17:55:57 2016 +0000 * config/ia64/ia64.c (ia64_emit_insn_before): Fix prototype. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@242785 138bc75d-0d04-0410-961f-82ee72b054a4 diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 600a9ef..62e354c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2016-11-23 Jeff Law + + * config/ia64/ia64.c (ia64_emit_insn_before): Fix prototype. + 2016-11-23 James Greenhalgh PR target/63250 diff --git a/gcc/config/ia64/ia64.c b/gcc/config/ia64/ia64.c index c8dbb4c..169b571 100644 --- a/gcc/config/ia64/ia64.c +++ b/gcc/config/ia64/ia64.c @@ -7138,7 +7138,7 @@ static char mem_ops_in_group[4]; static int current_cycle; static rtx ia64_single_set (rtx_insn *); -static void ia64_emit_insn_before (rtx, rtx); +static void ia64_emit_insn_before (rtx, rtx_insn *); /* Map a bundle number to its pseudo-op. */