public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* Do not describe -std=c11 etc. as experimental in c.opt help text
@ 2015-10-01 17:01 Joseph Myers
  2015-10-02  8:50 ` Matthias Klose
  2015-10-02 15:35 ` Marek Polacek
  0 siblings, 2 replies; 9+ messages in thread
From: Joseph Myers @ 2015-10-01 17:01 UTC (permalink / raw)
  To: gcc-patches; +Cc: jason

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.

Bootstrapped with no regressions on x86_64-pc-linux-gnu.  Applied to
mainline.

2015-10-01  Joseph Myers  <joseph@codesourcery.com>

	* c.opt (std=c11): Do not describe as experimental.
	(std=gnu11): Likewise.
	(std=iso9899:2011): Likewise.

Index: gcc/c-family/c.opt
===================================================================
--- gcc/c-family/c.opt	(revision 228327)
+++ gcc/c-family/c.opt	(working copy)
@@ -1656,7 +1656,7 @@
 
 std=c11
 C ObjC
-Conform to the ISO 2011 C standard (experimental and incomplete support)
+Conform to the ISO 2011 C standard
 
 std=c1x
 C ObjC Alias(std=c11)
@@ -1713,7 +1713,7 @@
 
 std=gnu11
 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=gnu1x
 C ObjC Alias(std=gnu11)
@@ -1753,7 +1753,7 @@
 
 std=iso9899:2011
 C ObjC Alias(std=c11)
-Conform to the ISO 2011 C standard (experimental and incomplete support)
+Conform to the ISO 2011 C standard
 
 traditional
 Driver

-- 
Joseph S. Myers
joseph@codesourcery.com

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Do not describe -std=c11 etc. as experimental in c.opt help text
  2015-10-01 17:01 Do not describe -std=c11 etc. as experimental in c.opt help text Joseph Myers
@ 2015-10-02  8:50 ` Matthias Klose
  2015-10-02 15:20   ` Joseph Myers
  2015-10-02 15:35 ` Marek Polacek
  1 sibling, 1 reply; 9+ messages in thread
From: Matthias Klose @ 2015-10-02  8:50 UTC (permalink / raw)
  To: Joseph Myers, gcc-patches

On 01.10.2015 19:01, 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.

this seems to be true for the gcc-5 branch as well. Could you fix it there as well?

   Matthias

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Do not describe -std=c11 etc. as experimental in c.opt help text
  2015-10-02  8:50 ` Matthias Klose
@ 2015-10-02 15:20   ` Joseph Myers
  0 siblings, 0 replies; 9+ messages in thread
From: Joseph Myers @ 2015-10-02 15:20 UTC (permalink / raw)
  To: Matthias Klose; +Cc: gcc-patches

On Fri, 2 Oct 2015, Matthias Klose wrote:

> On 01.10.2015 19:01, 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.
> 
> this seems to be true for the gcc-5 branch as well. Could you fix it there as
> well?

Done.

-- 
Joseph S. Myers
joseph@codesourcery.com

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Do not describe -std=c11 etc. as experimental in c.opt help text
  2015-10-01 17:01 Do not describe -std=c11 etc. as experimental in c.opt help text Joseph Myers
  2015-10-02  8:50 ` Matthias Klose
@ 2015-10-02 15:35 ` Marek Polacek
  2015-10-02 15:37   ` Jakub Jelinek
                     ` (2 more replies)
  1 sibling, 3 replies; 9+ messages in thread
From: Marek Polacek @ 2015-10-02 15:35 UTC (permalink / raw)
  To: Jason Merrill; +Cc: gcc-patches, Joseph Myers

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  <polacek@redhat.com>

	* 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

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Do not describe -std=c11 etc. as experimental in c.opt help text
  2015-10-02 15:35 ` Marek Polacek
@ 2015-10-02 15:37   ` Jakub Jelinek
  2015-10-02 15:38   ` Marek Polacek
  2015-10-09 13:50   ` Marek Polacek
  2 siblings, 0 replies; 9+ messages in thread
From: Jakub Jelinek @ 2015-10-02 15:37 UTC (permalink / raw)
  To: Marek Polacek; +Cc: Jason Merrill, gcc-patches, Joseph Myers

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  <polacek@redhat.com>
> 
> 	* c.opt (std=gnu++11): Do not describe as experimental.
> 	(std=gnu++14: Likewise.

Missing ) before :.

	Jakub

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Do not describe -std=c11 etc. as experimental in c.opt help text
  2015-10-02 15:35 ` Marek Polacek
  2015-10-02 15:37   ` Jakub Jelinek
@ 2015-10-02 15:38   ` Marek Polacek
  2015-10-09 13:50   ` Marek Polacek
  2 siblings, 0 replies; 9+ messages in thread
From: Marek Polacek @ 2015-10-02 15:38 UTC (permalink / raw)
  To: Jason Merrill; +Cc: gcc-patches, Joseph Myers

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  <polacek@redhat.com>
> 
> 	* c.opt (std=gnu++11): Do not describe as experimental.
> 	(std=gnu++14: Likewise.

And consider the missing ) fixed ;).

	Marek

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Do not describe -std=c11 etc. as experimental in c.opt help text
  2015-10-02 15:35 ` Marek Polacek
  2015-10-02 15:37   ` Jakub Jelinek
  2015-10-02 15:38   ` Marek Polacek
@ 2015-10-09 13:50   ` Marek Polacek
  2015-10-16 11:08     ` Marek Polacek
  2 siblings, 1 reply; 9+ messages in thread
From: Marek Polacek @ 2015-10-09 13:50 UTC (permalink / raw)
  To: Jason Merrill; +Cc: gcc-patches, Joseph Myers

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  <polacek@redhat.com>
> 
> 	* 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

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Do not describe -std=c11 etc. as experimental in c.opt help text
  2015-10-09 13:50   ` Marek Polacek
@ 2015-10-16 11:08     ` Marek Polacek
  2015-10-16 16:35       ` Joseph Myers
  0 siblings, 1 reply; 9+ messages in thread
From: Marek Polacek @ 2015-10-16 11:08 UTC (permalink / raw)
  To: Jason Merrill; +Cc: gcc-patches, Joseph Myers

Ping^2.

On Fri, Oct 09, 2015 at 03:50:02PM +0200, Marek Polacek wrote:
> 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  <polacek@redhat.com>
> > 
> > 	* 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

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Do not describe -std=c11 etc. as experimental in c.opt help text
  2015-10-16 11:08     ` Marek Polacek
@ 2015-10-16 16:35       ` Joseph Myers
  0 siblings, 0 replies; 9+ messages in thread
From: Joseph Myers @ 2015-10-16 16:35 UTC (permalink / raw)
  To: Marek Polacek; +Cc: Jason Merrill, gcc-patches

The changes to C++ option descriptions are OK in the absence of C++ 
front-end maintainer objections within 96 hours.

-- 
Joseph S. Myers
joseph@codesourcery.com

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2015-10-16 16:29 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-01 17:01 Do not describe -std=c11 etc. as experimental in c.opt help text Joseph Myers
2015-10-02  8:50 ` Matthias Klose
2015-10-02 15:20   ` Joseph Myers
2015-10-02 15:35 ` Marek Polacek
2015-10-02 15:37   ` Jakub Jelinek
2015-10-02 15:38   ` Marek Polacek
2015-10-09 13:50   ` Marek Polacek
2015-10-16 11:08     ` Marek Polacek
2015-10-16 16:35       ` Joseph Myers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).