From patchwork Tue Nov 13 07:39:05 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jakub Jelinek X-Patchwork-Id: 198551 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 2EA312C00D2 for ; Tue, 13 Nov 2012 18:39:56 +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=1353397199; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Received:Received:Date:From:To:Cc:Subject:Message-ID:Reply-To: References:MIME-Version:Content-Type:Content-Disposition: In-Reply-To:User-Agent:Mailing-List:Precedence:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=1bLh9l+loS7H/7zeWsj+gR7wfH4=; b=y3twZE1zB0VGiRo km7PIbxTzXLSH5eJbs0lqm5fFE2VXybruKu6ph5OPwtpB0VVJ6YmoIPFDZWFw9an 9iQy2dIi+QkNbd9db1fS/CTQNsx40ob/ALy6NNdJYYhIJBniuEFaJpgutyClNzsm l9eTDsyHWFSwC81ifu43uDZ6jbT8= 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:Received:Date:From:To:Cc:Subject:Message-ID:Reply-To:References:MIME-Version:Content-Type:Content-Disposition:In-Reply-To:User-Agent:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=OcbpfY12rhz7N35qywO17EOH5sEFBYvbR0ZKsYSrHbmmiAS1WyVR5tOT+fOOtH K3rpo39uKYz+cZ2d5sjB26fIsb5JYOaWJ/4QRwFxcdC1+4a6Ivi6EPzwbqDe/+BQ p5+HiFBcVZChVh94L9coYn4YOaYND7u0qugRoXXSHrcjM=; Received: (qmail 2533 invoked by alias); 13 Nov 2012 07:39:49 -0000 Received: (qmail 2514 invoked by uid 22791); 13 Nov 2012 07:39:47 -0000 X-SWARE-Spam-Status: No, hits=-6.4 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_DNSWL_HI, 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; Tue, 13 Nov 2012 07:39:39 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qAD7dcK1012056 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 13 Nov 2012 02:39:38 -0500 Received: from zalov.redhat.com (vpn1-4-95.ams2.redhat.com [10.36.4.95]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id qAD7daY5014054 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 13 Nov 2012 02:39:37 -0500 Received: from zalov.cz (localhost [127.0.0.1]) by zalov.redhat.com (8.14.5/8.14.5) with ESMTP id qAD7dZRh014913; Tue, 13 Nov 2012 08:39:36 +0100 Received: (from jakub@localhost) by zalov.cz (8.14.5/8.14.5/Submit) id qAD7d5S0014804; Tue, 13 Nov 2012 08:39:05 +0100 Date: Tue, 13 Nov 2012 08:39:05 +0100 From: Jakub Jelinek To: David Edelsohn Cc: GCC Patches Subject: Re: [PATCH] Include tm_p.h in asan.c Message-ID: <20121113073905.GU1886@tucnak.redhat.com> Reply-To: Jakub Jelinek References: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) 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 On Mon, Nov 12, 2012 at 10:13:08PM -0500, David Edelsohn wrote: > gcc/asan.c probably should have been split into two files because it > works at multiple levels. But given that it invokes > ASM_GENERATE_INTERNAL_LABEL, it needs to include tm_p.h to include > -protos.h. > > Committed as obvious to allow AIX bootstrap to proceed. > > * asan.c: Include tm_p.h Thanks, but Makefile.in needs to be adjusted accordingly too. Committed as obvious. 2012-11-13 Jakub Jelinek * Makefile.in (asan.o): Depend on $(TM_P_H). Jakub --- gcc/Makefile.in.jj 2012-11-12 16:58:42.000000000 +0100 +++ gcc/Makefile.in 2012-11-13 08:36:41.470663811 +0100 @@ -2211,7 +2211,7 @@ stor-layout.o : stor-layout.c $(CONFIG_H asan.o : asan.c asan.h $(CONFIG_H) $(SYSTEM_H) $(GIMPLE_H) \ output.h coretypes.h $(GIMPLE_PRETTY_PRINT_H) \ tree-iterator.h $(TREE_FLOW_H) $(TREE_PASS_H) \ - $(TARGET_H) $(EXPR_H) $(OPTABS_H) + $(TARGET_H) $(EXPR_H) $(OPTABS_H) $(TM_P_H) tree-ssa-tail-merge.o: tree-ssa-tail-merge.c \ $(SYSTEM_H) $(CONFIG_H) coretypes.h $(TM_H) $(BITMAP_H) \ $(FLAGS_H) $(TM_P_H) $(BASIC_BLOCK_H) \