From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 94808 invoked by alias); 8 Apr 2016 11:44:14 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 94789 invoked by uid 89); 8 Apr 2016 11:44:13 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_PASS,URIBL_RED autolearn=ham version=3.3.2 spammy=H*Ad:U*thomas X-HELO: fencepost.gnu.org Received: from fencepost.gnu.org (HELO fencepost.gnu.org) (208.118.235.10) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Fri, 08 Apr 2016 11:44:03 +0000 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53982) by fencepost.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1aoUpV-0003R9-Ki for gcc-patches@gnu.org; Fri, 08 Apr 2016 07:44:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aoUpR-0001nr-A3 for gcc-patches@gnu.org; Fri, 08 Apr 2016 07:44:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:46908) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoUpR-0001nV-45 for gcc-patches@gnu.org; Fri, 08 Apr 2016 07:43:57 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 09FA1ED258; Fri, 8 Apr 2016 11:43:56 +0000 (UTC) Received: from tucnak.zalov.cz (ovpn-113-22.phx2.redhat.com [10.3.113.22]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u38BhsYp006167 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 8 Apr 2016 07:43:55 -0400 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id u38BhpFS019695; Fri, 8 Apr 2016 13:43:52 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id u38BhnCI019694; Fri, 8 Apr 2016 13:43:49 +0200 Date: Fri, 08 Apr 2016 11:44:00 -0000 From: Jakub Jelinek To: Tom de Vries Cc: Thomas Schwinge , "gcc-patches@gnu.org" , Jeff Law Subject: Re: [patch, driver] Ignore -ftree-parallelize-loops={0,1} Message-ID: <20160408114349.GS19207@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <559B8565.6030806@mentor.com> <55A399D8.60300@mentor.com> <55A49620.9070501@redhat.com> <55A4CA09.5060107@mentor.com> <871t79t6lr.fsf@kepler.schwinge.homeip.net> <87d1q075h9.fsf@kepler.schwinge.homeip.net> <5707981E.40809@mentor.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5707981E.40809@mentor.com> User-Agent: Mutt/1.5.24 (2015-08-30) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 X-IsSubscribed: yes X-SW-Source: 2016-04/txt/msg00397.txt.bz2 On Fri, Apr 08, 2016 at 01:38:06PM +0200, Tom de Vries wrote: > On 08/04/16 12:35, Thomas Schwinge wrote: > I've looked at the patch, it looks good to me. > > I think it can be committed as obvious. The patch is ok for trunk. > >>commit df7d7943ae64f6df74d360e71f7c495c78647fda > >>Author: Thomas Schwinge > >>Date: Thu Mar 17 17:17:36 2016 +0100 > >> > >> Complete changes to "Ignore -ftree-parallelize-loops={0,1} using gt" > >> > >> Apply the r225764 and r233573 changes to all relevant spec strings. > >> > >> gcc/ > >> * config/arc/arc.h (LINK_COMMAND_SPEC): Use gt to ignore > >> -ftree-parallelize-loops={0,1}. > >> * config/darwin.h (LINK_COMMAND_SPEC_A): Likewise. > >> * config/i386/mingw32.h (GOMP_SELF_SPECS): Likewise. > >> * config/ia64/hpux.h (LIB_SPEC): Likewise. > >> * config/pa/pa-hpux11.h (LIB_SPEC): Likewise. > >> * config/pa/pa64-hpux.h (LIB_SPEC): Likewise. Jakub