From patchwork Wed Aug 8 08:28:18 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nick Clifton X-Patchwork-Id: 175884 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 9C3E92C0087 for ; Wed, 8 Aug 2012 18:34:15 +1000 (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=1345019655; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: From:To:Subject:Date:Message-ID:MIME-Version:Content-Type: Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:Sender:Delivered-To; bh=s9+j9DDYp7yBT5xDtLUD XNiVmcg=; b=TAoR9oaoURB2OZeNlJf0ipQmzHaNDRaPMQhmSvIeabvPF7wxX8oV FQI4oYqO4bQrppnKVvIFYzBayKSe4QI0xsbfHPrvInUUQXI4GSAMLQB6iR1cxP7o qVav1UrY2zXA9dyd7TqVS/Yh+ND70G/ekQVrNcHopz0uerM0nvhkWno= 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:From:To:Subject:Date:Message-ID:MIME-Version:Content-Type:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=vE2uIRA/Bs+iqwBYbtYfRCIOYj6UxQNjNl3LYyyLRmJYoG/XHvkHEHwFsTkxAl qxYadZRx3U3WeGv0r/qeuyiexo+HgRzTPUTHk8DfJvryiPSWy1FzalsYK2I6bNIo UpKtzcsjfSgF8VaY0uXxOiY+89P7RQINylAfCy1RseI/c=; Received: (qmail 29017 invoked by alias); 8 Aug 2012 08:34:11 -0000 Received: (qmail 28946 invoked by uid 22791); 8 Aug 2012 08:34:10 -0000 X-SWARE-Spam-Status: No, hits=-6.1 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_DNSWL_HI, RCVD_IN_HOSTKARMA_W, SPF_HELO_PASS, T_RP_MATCHES_RCVD 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; Wed, 08 Aug 2012 08:33:57 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q788XvmH019328 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 8 Aug 2012 04:33:57 -0400 Received: from Cadeux.redhat.com (vpn1-4-172.ams2.redhat.com [10.36.4.172]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id q788XsOS032331 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Wed, 8 Aug 2012 04:33:56 -0400 From: Nick Clifton To: gcc-patches@gcc.gnu.org Subject: Commit: RL78: Include tree-pass.h Date: Wed, 08 Aug 2012 09:28:18 +0100 Message-ID: <87a9y5aiu5.fsf@redhat.com> MIME-Version: 1.0 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 Hi DJ, I am applying the following patch to the gcc mainline as an obvious fix for the following problem building the RL78 backend: gcc/config/rl78/rl78.c:151:3: error: 'PASS_POS_INSERT_BEFORE' undeclared here (not in a function) Cheers Nick gcc/ChangeLog 2012-08-08 Nick Clifton * config/rl78/rl78.c: Include tree-pass.h. Index: gcc/config/rl78/rl78.c =================================================================== --- gcc/config/rl78/rl78.c (revision 190223) +++ gcc/config/rl78/rl78.c (working copy) @@ -48,6 +48,7 @@ #include "langhooks.h" #include "rl78-protos.h" #include "dumpfile.h" +#include "tree-pass.h" static inline bool is_interrupt_func (const_tree decl); static inline bool is_brk_interrupt_func (const_tree decl);