From patchwork Sat Jul 7 14:48:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steven Bosscher X-Patchwork-Id: 169598 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 18BE12C0205 for ; Sun, 8 Jul 2012 00:48:54 +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=1342277335; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: MIME-Version:Received:From:Date:Message-ID:Subject:To:Cc: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=du5/Mdv BUvwMd3Pe8UpkhHLGv4E=; b=uq87bKVrQjEvLg2e0drcSleH0Zyl5vvFyVA1tvk hkOTqjAJTLOjMODYhZXeRZ6ENvc1oStLBymailGR5TWjZAkd+JVSYb/i7BDTJm5p ECz2ka/h9She5GqhiA/h2NjmaWoEmb1SC6PwQL/wA0vehWpJEDkj2YyGS08bMw2N cS6Q= 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:MIME-Version:Received:From:Date:Message-ID:Subject:To:Cc:Content-Type:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=b/vDYKoMo+r83GMfyrsljI4bW8Ggs7tkkN6Sxj0+P4fGvtB8LQGpU6oMreR/k/ Fwfij2npDUe/gMZR6z79eiU6E9IqDGtZTVUJOPvZmkaFpnDTivYp8dwPOeWypGY3 MECqCQ24IoXWWgtW33H3InguNj3A6sYGKeAvDThDKuUrw=; Received: (qmail 15613 invoked by alias); 7 Jul 2012 14:48:50 -0000 Received: (qmail 15603 invoked by uid 22791); 7 Jul 2012 14:48:49 -0000 X-SWARE-Spam-Status: No, hits=-4.2 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, KHOP_RCVD_TRUST, RCVD_IN_DNSWL_LOW, RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-lb0-f175.google.com (HELO mail-lb0-f175.google.com) (209.85.217.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 07 Jul 2012 14:48:36 +0000 Received: by lbol5 with SMTP id l5so2251130lbo.20 for ; Sat, 07 Jul 2012 07:48:34 -0700 (PDT) Received: by 10.152.132.233 with SMTP id ox9mr33698950lab.25.1341672514465; Sat, 07 Jul 2012 07:48:34 -0700 (PDT) MIME-Version: 1.0 Received: by 10.112.4.229 with HTTP; Sat, 7 Jul 2012 07:48:14 -0700 (PDT) From: Steven Bosscher Date: Sat, 7 Jul 2012 16:48:14 +0200 Message-ID: Subject: [RFT] Remove -fno-tree-dominator-opts from libgcc/config/t-darwin To: GCC Patches Cc: Mike Stump , Jack Howarth 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 Hello, PR26840 was fixed long ago so this work-around shouldn't be necessary anymore: $(crt_compile) $(DARWIN_EXTRA_CRT_BUILD_CFLAGS) -DSTART -c $< Request for testing because I have no access to a Darwin machine. Thanks, Ciao! Steven Index: ../libgcc/config/t-darwin =================================================================== --- ../libgcc/config/t-darwin (revision 189348) +++ ../libgcc/config/t-darwin (working copy) @@ -1,7 +1,5 @@ -# Pass -fno-tree-dominator-opts to work around bug 26840. crt3.o: $(srcdir)/config/darwin-crt3.c - $(crt_compile) \ - -fno-tree-dominator-opts $(DARWIN_EXTRA_CRT_BUILD_CFLAGS) -c $< + $(crt_compile) -fno-tree-dominator-opts $(DARWIN_EXTRA_CRT_BUILD_CFLAGS) -c $< crttms.o: $(srcdir)/config/darwin-crt-tm.c