From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 79195 invoked by alias); 9 Oct 2015 13:50:09 -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 79160 invoked by uid 89); 9 Oct 2015 13:50:09 -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_00,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Fri, 09 Oct 2015 13:50:08 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 0190F461E2; Fri, 9 Oct 2015 13:50:06 +0000 (UTC) Received: from redhat.com (ovpn-204-17.brq.redhat.com [10.40.204.17]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t99Do3MY007342 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO); Fri, 9 Oct 2015 09:50:05 -0400 Date: Fri, 09 Oct 2015 13:50:00 -0000 From: Marek Polacek To: Jason Merrill Cc: gcc-patches@gcc.gnu.org, Joseph Myers Subject: Re: Do not describe -std=c11 etc. as experimental in c.opt help text Message-ID: <20151009135002.GD6184@redhat.com> References: <20151002153538.GA6184@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20151002153538.GA6184@redhat.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SW-Source: 2015-10/txt/msg00975.txt.bz2 Jason: ping. On Fri, Oct 02, 2015 at 05:35:39PM +0200, Marek Polacek wrote: > On Thu, Oct 01, 2015 at 05:01:26PM +0000, Joseph Myers wrote: > > I noticed that c.opt still described -std=c11 and related options as > > experimental in the --help text. This patch fixes this. > > > > Jason, note that -std=gnu++11 and -std=gnu++14 still have that text, > > contrary to the descriptions of -std=c++11 and -std=c++14. > > Thus, ok to commit this one (to trunk + 5)? > > 2015-10-02 Marek Polacek > > * c.opt (std=gnu++11): Do not describe as experimental. > (std=gnu++14): Likewise. > > diff --git gcc/c-family/c.opt gcc/c-family/c.opt > index a79b9f1..bfa09ee 100644 > --- gcc/c-family/c.opt > +++ gcc/c-family/c.opt > @@ -1694,7 +1694,7 @@ corrigendum with GNU extensions > > std=gnu++11 > C++ ObjC++ > -Conform to the ISO 2011 C++ standard with GNU extensions (experimental and incomplete support) > +Conform to the ISO 2011 C++ standard with GNU extensions > > std=gnu++0x > C++ ObjC++ Alias(std=gnu++11) Undocumented > @@ -1706,7 +1706,7 @@ Deprecated in favor of -std=gnu++14 > > std=gnu++14 > C++ ObjC++ > -Conform to the ISO 2014 C++ standard with GNU extensions (experimental and incomplete support) > +Conform to the ISO 2014 C++ standard with GNU extensions > > std=gnu++1z > C++ ObjC++ > > Marek Marek