From patchwork Thu Sep 26 12:51:27 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Edelsohn X-Patchwork-Id: 278190 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 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 5126A2C00B7 for ; Thu, 26 Sep 2013 22:51:36 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:content-type; q= dns; s=default; b=PZsS3fM6Adl5Ll8y/JF8I8CGmh6pQzs3nEkIobPY8UI3Yh a49mHBfUJRQQQiqtVWkOHvzmIXgHZxHvSYDm7LX6pjp5l38oMCO4sGoWOqk05Wj1 RjQWZ9oiUWuI8ymM6C5M0NM/PU9fz9bpaXfCfNeKt89+6BueGdzacpcZNrGcM= 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 :mime-version:date:message-id:subject:from:to:content-type; s= default; bh=f2jt38vpUNjo4tH3Sv+v4MTp5jE=; b=ucdbmu43EY8SXU9yC4a7 ieE6z1nvWfrFLIEZzd94SHDlV2DmPmo1gcTOkie6elKmmp38MRo9IfKE4FOWdYrP PlAJEZznIj6XOmJ4ILjjuINIEyekD2OAbSHpM5z7Dhl1Lufcy2Mxu6qilR6DzPA7 j0NSiN24FSdfHS9BB+Z3vrM= Received: (qmail 9724 invoked by alias); 26 Sep 2013 12:51: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 9714 invoked by uid 89); 26 Sep 2013 12:51:30 -0000 Received: from mail-ve0-f172.google.com (HELO mail-ve0-f172.google.com) (209.85.128.172) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Thu, 26 Sep 2013 12:51:30 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=2.2 required=5.0 tests=AWL, BAYES_50, FREEMAIL_FROM, NO_RELAYS, SPAM_SUBJECT autolearn=no version=3.3.2 X-HELO: mail-ve0-f172.google.com Received: by mail-ve0-f172.google.com with SMTP id oz11so852695veb.3 for ; Thu, 26 Sep 2013 05:51:27 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.58.137.167 with SMTP id qj7mr488776veb.1.1380199887502; Thu, 26 Sep 2013 05:51:27 -0700 (PDT) Received: by 10.220.126.197 with HTTP; Thu, 26 Sep 2013 05:51:27 -0700 (PDT) Date: Thu, 26 Sep 2013 08:51:27 -0400 Message-ID: Subject: [PATCH, committed] Update t-rs6000 for automatic dependencies From: David Edelsohn To: GCC Patches All of the rs6000-specific dependencies are included and discovered automatically. Bootstrapped on powerpc-ibm-aix7.1.0.0. David * config/rs6000/t-rs6000 (rs6000.o): Remove. (rs6000-c.o): Use COMPILE and POSTCOMPILE. Index: config/rs6000/t-rs6000 =================================================================== --- config/rs6000/t-rs6000 (revision 202942) +++ config/rs6000/t-rs6000 (working copy) @@ -20,22 +20,10 @@ TM_H += $(srcdir)/config/rs6000/rs6000-builtin.def -rs6000.o: $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ - $(RTL_H) $(REGS_H) hard-reg-set.h \ - real.h insn-config.h conditions.h insn-attr.h flags.h $(RECOG_H) \ - $(OBSTACK_H) $(TREE_H) $(EXPR_H) $(OPTABS_H) except.h function.h \ - output.h dbxout.h $(BASIC_BLOCK_H) toplev.h $(GGC_H) $(HASHTAB_H) \ - $(TM_P_H) $(TARGET_H) $(TARGET_DEF_H) langhooks.h reload.h gt-rs6000.h \ - cfgloop.h $(OPTS_H) $(COMMON_TARGET_H) dumpfile.h \ - $(srcdir)/config/rs6000/rs6000-cpus.def +rs6000-c.o: $(srcdir)/config/rs6000/rs6000-c.c + $(COMPILE) $< + $(POSTCOMPILE) -rs6000-c.o: $(srcdir)/config/rs6000/rs6000-c.c \ - $(srcdir)/config/rs6000/rs6000-protos.h \ - $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(CPPLIB_H) \ - $(TM_P_H) $(C_PRAGMA_H) errors.h coretypes.h $(TM_H) - $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ - $(srcdir)/config/rs6000/rs6000-c.c - $(srcdir)/config/rs6000/rs6000-tables.opt: $(srcdir)/config/rs6000/genopt.sh \ $(srcdir)/config/rs6000/rs6000-cpus.def $(SHELL) $(srcdir)/config/rs6000/genopt.sh $(srcdir)/config/rs6000 > \