diff options
author | Jason Merrill <jason@redhat.com> | 2014-08-25 01:05:01 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2014-08-25 01:05:01 -0400 |
commit | 028aee171abc1b13e97734bac4a3db46743d7a6b (patch) | |
tree | d336eea618bf43328e36d2b18690a8a1c4b26f95 /gcc/c-family/c.opt | |
parent | 3f0d513197d9b0872b016229f5d1d1c76adb39b7 (diff) | |
download | gcc-028aee171abc1b13e97734bac4a3db46743d7a6b.zip gcc-028aee171abc1b13e97734bac4a3db46743d7a6b.tar.gz gcc-028aee171abc1b13e97734bac4a3db46743d7a6b.tar.bz2 |
c.opt: Change -std=c++1y and -std=gnu++1y to be aliases for -std=c++14 and -std=gnu++14...
* c.opt: Change -std=c++1y and -std=gnu++1y to be aliases for
-std=c++14 and -std=gnu++14, rather than the reverse.
* c-opts.c (c_common_handle_option): Change OPT_std_c__1y and
OPT_std_gnu__1y to OPT_std_c__14 and OPT_std_gnu__14.
* c-common.h (cxx_dialect): Remove cxx1y.
From-SVN: r214414
Diffstat (limited to 'gcc/c-family/c.opt')
-rw-r--r-- | gcc/c-family/c.opt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gcc/c-family/c.opt b/gcc/c-family/c.opt index cb7bb3e..d619250 100644 --- a/gcc/c-family/c.opt +++ b/gcc/c-family/c.opt @@ -1440,11 +1440,12 @@ C++ ObjC++ Alias(std=c++11) Undocumented Deprecated in favor of -std=c++11 std=c++1y -C++ ObjC++ -Conform to the ISO 2014(?) C++ draft standard (experimental and incomplete support) +C++ ObjC++ Alias(std=c++14) Undocumented +Deprecated in favor of -std=c++14 std=c++14 -C++ ObjC++ Alias(std=c++1y) Undocumented +C++ ObjC++ Undocumented +Conform to the ISO 2014 C++ standard (experimental and incomplete support) std=c++1z C++ ObjC++ @@ -1496,11 +1497,11 @@ C++ ObjC++ Alias(std=gnu++11) Deprecated in favor of -std=gnu++11 std=gnu++1y -C++ ObjC++ -Conform to the ISO 201y(4?) C++ draft standard with GNU extensions (experimental and incomplete support) +C++ ObjC++ Alias(std=gnu++14) Undocumented std=gnu++14 -C++ ObjC++ Alias(std=gnu++1y) Undocumented +C++ ObjC++ +Conform to the ISO 2014 C++ standard with GNU extensions (experimental and incomplete support) std=gnu++1z C++ ObjC++ |