From patchwork Wed Aug 22 03:00:22 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Stump X-Patchwork-Id: 179220 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 388E92C0086 for ; Wed, 22 Aug 2012 13:00:57 +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=1346209258; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Subject:Mime-Version:Content-Type:From:In-Reply-To:Date:Cc: Message-Id:References:To:Mailing-List:Precedence:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=Q2GSlpu0I7Vk30f2WQEa3wIjIuY=; b=e5Yq3w4MX0B8s94 clR8EmomI+PLz9g4GrN0Splyte99WUbrGq6Ta17TbfzdHVqZHFnV2itRWBdd9m6D VJW4xM2RkV6+yWlk3cdsuoItOQ5vdDP78ThVtNU6hRpJ6W72957e9Xfg91tW9NKb 8clZ4LoVW/IGEQUNeLzOSZ4K2LLQ= 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:Subject:Mime-Version:Content-Type:From:In-Reply-To:Date:Cc:Message-Id:References:To:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=OxG9aBYU969Xm6pofK32Xz1gVjLfWX8mIdBghK+wI+Icmp2yvNks2R8jWMamoK MfFyi31fevngYJ8+Xa60LtVomEMbgHKNMoH6ckEDs5VjgKBxihF4Rou+SbyX9CK6 WC2RcIBr8E09KKtDYm6f+WL/ObqmS3ayUp+9+2EByX1uQ=; Received: (qmail 3184 invoked by alias); 22 Aug 2012 03:00:38 -0000 Received: (qmail 3144 invoked by uid 22791); 22 Aug 2012 03:00:36 -0000 X-SWARE-Spam-Status: No, hits=-3.7 required=5.0 tests=BAYES_00, FREEMAIL_FROM, KHOP_THREADED, RCVD_IN_DNSWL_NONE, RCVD_IN_HOSTKARMA_NO, RCVD_IN_HOSTKARMA_YE, RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from qmta07.emeryville.ca.mail.comcast.net (HELO qmta07.emeryville.ca.mail.comcast.net) (76.96.30.64) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 22 Aug 2012 03:00:23 +0000 Received: from omta11.emeryville.ca.mail.comcast.net ([76.96.30.36]) by qmta07.emeryville.ca.mail.comcast.net with comcast id peCW1j0050mlR8UA7f0PHC; Wed, 22 Aug 2012 03:00:23 +0000 Received: from bag6-1-pt.tunnel.tserv3.fmt2.ipv6.he.net ([IPv6:2001:470:1f04:ae1::2]) by omta11.emeryville.ca.mail.comcast.net with comcast id pf0N1j00b0P3DwE8Xf0Pla; Wed, 22 Aug 2012 03:00:23 +0000 Subject: Re: [PATCH 4/4] Reduce the size of optabs representation Mime-Version: 1.0 (Apple Message framework v1084) From: Mike Stump In-Reply-To: <1342722250-25934-5-git-send-email-rth@redhat.com> Date: Tue, 21 Aug 2012 20:00:22 -0700 Cc: gcc-patches@gcc.gnu.org Message-Id: References: <1342722250-25934-1-git-send-email-rth@redhat.com> <1342722250-25934-5-git-send-email-rth@redhat.com> To: Richard Henderson 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 Jul 19, 2012, at 11:24 AM, Richard Henderson wrote: > +# genopinit produces two files. > +insn-opinit.c insn-opinit.h: s-opinit ; @true > +s-opinit: $(MD_DEPS) build/genopinit$(build_exeext) insn-conditions.md > + $(RUN_GEN) build/genopinit$(build_exeext) $(md_file) \ > + insn-conditions.md -htmp-opinit.h -ctmp-opinit.c > + $(SHELL) $(srcdir)/../move-if-change tmp-opinit.h insn-opinit.h > + $(SHELL) $(srcdir)/../move-if-change tmp-opinit.c insn-opinit.c > + $(STAMP) s-opinit Breaks my port without the attached patch... diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 67f1d66..bd31c9b 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3484,7 +3484,7 @@ s-attrtab : $(MD_DEPS) build/genattrtab$(build_exeext) \ # genopinit produces two files. insn-opinit.c insn-opinit.h: s-opinit ; @true s-opinit: $(MD_DEPS) build/genopinit$(build_exeext) insn-conditions.md - $(RUN_GEN) build/genopinit$(build_exeext) $(md_file) \ + $(RUN_GEN) build/genopinit$(build_exeext) $(MD_INCS) $(md_file) \ insn-conditions.md -htmp-opinit.h -ctmp-opinit.c $(SHELL) $(srcdir)/../move-if-change tmp-opinit.h insn-opinit.h $(SHELL) $(srcdir)/../move-if-change tmp-opinit.c insn-opinit.c