From patchwork Tue Jul 27 14:51:08 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andi Kleen X-Patchwork-Id: 60146 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 F1283B6F06 for ; Thu, 29 Jul 2010 00:10:20 +1000 (EST) Received: (qmail 10387 invoked by alias); 28 Jul 2010 14:10:10 -0000 Received: (qmail 10280 invoked by uid 22791); 28 Jul 2010 14:10:08 -0000 X-SWARE-Spam-Status: No, hits=-1.4 required=5.0 tests=AWL, BAYES_00, DATE_IN_PAST_12_24, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from one.firstfloor.org (HELO one.firstfloor.org) (213.235.205.2) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 28 Jul 2010 14:09:47 +0000 Received: from basil.firstfloor.org (p5B3C94DA.dip0.t-ipconnect.de [91.60.148.218]) by one.firstfloor.org (Postfix) with ESMTP id D18C422C806E for ; Wed, 28 Jul 2010 16:09:43 +0200 (CEST) Received: by basil.firstfloor.org (Postfix, from userid 1000) id B86FAB250E; Tue, 27 Jul 2010 16:51:08 +0200 (CEST) Date: Tue, 27 Jul 2010 16:51:08 +0200 From: Andi Kleen To: gcc-patches@gcc.gnu.org Subject: [PATCH] LTO: Fix dependencies for lto.c Message-ID: <20100727145108.GA32126@basil.fritz.box> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) 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 LTO: Fix dependencies for lto.c When I added splay-tree.h usage earlier to lto.c I forgot to update the Makefile dependencies. Should be obvious? Passed bootstrap and test suite run on x86_64-linux 2010-07-27 Andi Kleen * Make-lang.in (lto.o): Add dependency to splay-tree.h Index: gcc/lto/Make-lang.in =================================================================== --- gcc/lto/Make-lang.in (revision 162566) +++ gcc/lto/Make-lang.in (working copy) @@ -85,7 +85,7 @@ $(CGRAPH_H) $(GGC_H) tree-ssa-operands.h $(TREE_PASS_H) \ langhooks.h $(VEC_H) $(BITMAP_H) pointer-set.h $(IPA_PROP_H) \ $(COMMON_H) debug.h $(TIMEVAR_H) $(GIMPLE_H) $(LTO_H) $(LTO_TREE_H) \ - $(LTO_TAGS_H) $(LTO_STREAMER_H) gt-lto-lto.h + $(LTO_TAGS_H) $(LTO_STREAMER_H) $(SPLAY_TREE_H) gt-lto-lto.h lto/lto-elf.o: lto/lto-elf.c $(CONFIG_H) coretypes.h $(SYSTEM_H) \ toplev.h $(LTO_H) $(TM_H) $(LIBIBERTY_H) $(GGC_H) $(LTO_STREAMER_H) lto/lto-coff.o: lto/lto-coff.c $(CONFIG_H) coretypes.h $(SYSTEM_H) \