From patchwork Mon Apr 18 21:27:10 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Stump X-Patchwork-Id: 91869 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 22FBEB6F0B for ; Tue, 19 Apr 2011 07:27:31 +1000 (EST) Received: (qmail 8120 invoked by alias); 18 Apr 2011 21:27:27 -0000 Received: (qmail 8110 invoked by uid 22791); 18 Apr 2011 21:27:26 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, RFC_ABUSE_POST, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from qmta06.emeryville.ca.mail.comcast.net (HELO qmta06.emeryville.ca.mail.comcast.net) (76.96.30.56) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 18 Apr 2011 21:27:12 +0000 Received: from omta21.emeryville.ca.mail.comcast.net ([76.96.30.88]) by qmta06.emeryville.ca.mail.comcast.net with comcast id Z8ds1g00C1u4NiLA69TCDo; Mon, 18 Apr 2011 21:27:12 +0000 Received: from up.mrs.kithrup.com ([24.4.193.8]) by omta21.emeryville.ca.mail.comcast.net with comcast id Z9TB1g00B0BKwT48h9TBil; Mon, 18 Apr 2011 21:27:11 +0000 From: Mike Stump Subject: turn lto back on for darwin9* Date: Mon, 18 Apr 2011 14:27:10 -0700 Message-Id: To: "gcc-patches@gcc.gnu.org Patches" Mime-Version: 1.0 (Apple Message framework v1084) 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 This turns lto back on for all darwin9 releases... 2011-04-18 Jack Howarth PR lto/48086 * configure.ac: Re-enable LTO on *-apple-darwin9*. * configure: Regenerate. 2011-04-18 Jack Howarth PR lto/48086 * configure.ac: Re-enable LTO on *-apple-darwin9*. * configure: Regenerate. Index: configure =================================================================== --- configure (revision 172670) +++ configure (working copy) @@ -5962,7 +5962,7 @@ else if test x"$default_enable_lto" = x"yes" ; then case $target in - *-apple-darwin9 | *-cygwin* | *-mingw*) ;; + *-apple-darwin9* | *-cygwin* | *-mingw*) ;; # On other non-ELF platforms, LTO has yet to be validated. *) enable_lto=no ;; esac Index: configure.ac =================================================================== --- configure.ac (revision 172670) +++ configure.ac (working copy) @@ -1500,7 +1500,7 @@ build_lto_plugin=yes ],[if test x"$default_enable_lto" = x"yes" ; then case $target in - *-apple-darwin9 | *-cygwin* | *-mingw*) ;; + *-apple-darwin9* | *-cygwin* | *-mingw*) ;; # On other non-ELF platforms, LTO has yet to be validated. *) enable_lto=no ;; esac