aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2015-10-01 18:00:14 +0100
committerJoseph Myers <jsm28@gcc.gnu.org>2015-10-01 18:00:14 +0100
commit0d1a8f7517eaed1d38d3827248e007634475bca4 (patch)
tree7aedd4aad5b31694c2e21045791fb8b28349949a
parent7b8089a3c65706af612097ce10280cb4858512d2 (diff)
downloadgcc-0d1a8f7517eaed1d38d3827248e007634475bca4.zip
gcc-0d1a8f7517eaed1d38d3827248e007634475bca4.tar.gz
gcc-0d1a8f7517eaed1d38d3827248e007634475bca4.tar.bz2
Do not describe -std=c11 etc. as experimental in c.opt help text.
I noticed that c.opt still described -std=c11 and related options as experimental in the --help text. This patch fixes this. Bootstrapped with no regressions on x86_64-pc-linux-gnu. * c.opt (std=c11): Do not describe as experimental. (std=gnu11): Likewise. (std=iso9899:2011): Likewise. From-SVN: r228349
-rw-r--r--gcc/c-family/ChangeLog6
-rw-r--r--gcc/c-family/c.opt6
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index 769f74a..3b33dc1 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,3 +1,9 @@
+2015-10-01 Joseph Myers <joseph@codesourcery.com>
+
+ * c.opt (std=c11): Do not describe as experimental.
+ (std=gnu11): Likewise.
+ (std=iso9899:2011): Likewise.
+
2015-09-28 Nathan Sidwell <nathan@codesourcery.com>
* c-common.c (DEF_FUNCTION_TYPE_VAR_6): New.
diff --git a/gcc/c-family/c.opt b/gcc/c-family/c.opt
index 3d7d502..b79c143 100644
--- a/gcc/c-family/c.opt
+++ b/gcc/c-family/c.opt
@@ -1656,7 +1656,7 @@ C++ ObjC++ Alias(std=c++1z) Undocumented
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 @@ C++ ObjC++ Alias(std=gnu++1z) Undocumented
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 @@ Deprecated in favor of -std=iso9899:1999
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