From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 87072 invoked by alias); 2 Oct 2015 15:35:46 -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 87060 invoked by uid 89); 2 Oct 2015 15:35:46 -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, 02 Oct 2015 15:35:45 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id 02978B8BD5; Fri, 2 Oct 2015 15:35:43 +0000 (UTC) Received: from redhat.com (ovpn-204-77.brq.redhat.com [10.40.204.77]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t92FZdXt029030 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO); Fri, 2 Oct 2015 11:35:42 -0400 Date: Fri, 02 Oct 2015 15:35: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: <20151002153538.GA6184@redhat.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) X-SW-Source: 2015-10/txt/msg00232.txt.bz2 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