diff options
author | Edward Smith-Rowland <3dw4rd@verizon.net> | 2014-11-02 02:51:41 +0000 |
---|---|---|
committer | Edward Smith-Rowland <emsr@gcc.gnu.org> | 2014-11-02 02:51:41 +0000 |
commit | 26f0e1d68ad731ea8bc2ec2dca4f23a12f878d03 (patch) | |
tree | 5689325fa1246b787551a91e6060c108fd0081d5 /gcc/c-family/c-cppbuiltin.c | |
parent | 38083ac28fab0c74efd11bafcbf1aab90641a46d (diff) | |
download | gcc-26f0e1d68ad731ea8bc2ec2dca4f23a12f878d03.zip gcc-26f0e1d68ad731ea8bc2ec2dca4f23a12f878d03.tar.gz gcc-26f0e1d68ad731ea8bc2ec2dca4f23a12f878d03.tar.bz2 |
feat-cxx11.C: Commentary and rearrangement of tests.
testsuite/
2014-11-01 Edward Smith-Rowland <3dw4rd@verizon.net>
* g++.dg/cpp1y/feat-cxx11.C: Commentary and rearrangement of tests.
* g++.dg/cpp1y/feat-cxx11-neg.C: Add aggregate NSDMI test.
Commentary and rearrangement of tests.
* g++.dg/cpp1y/feat-cxx14.C: Enable aggregate NSDMI test.
Commentary and rearrangement of tests.
* g++.dg/cpp1y/feat-cxx98-neg.C: Ditto
* g++.dg/cpp1y/feat-cxx98.C: Commentary.
c-family/
2014-11-01 Edward Smith-Rowland <3dw4rd@verizon.net>
* c-cppbuiltin.c: Define __cpp_aggregate_nsdmi.
From-SVN: r217012
Diffstat (limited to 'gcc/c-family/c-cppbuiltin.c')
-rw-r--r-- | gcc/c-family/c-cppbuiltin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-family/c-cppbuiltin.c b/gcc/c-family/c-cppbuiltin.c index 803f146..26fabc2 100644 --- a/gcc/c-family/c-cppbuiltin.c +++ b/gcc/c-family/c-cppbuiltin.c @@ -841,7 +841,7 @@ c_cpp_builtins (cpp_reader *pfile) //cpp_undef (pfile, "__cpp_constexpr"); //cpp_define (pfile, "__cpp_constexpr=201304"); cpp_define (pfile, "__cpp_decltype_auto=201304"); - //cpp_define (pfile, "__cpp_aggregate_nsdmi=201304"); + cpp_define (pfile, "__cpp_aggregate_nsdmi=201304"); cpp_define (pfile, "__cpp_variable_templates=201304"); cpp_define (pfile, "__cpp_digit_separators=201309"); //cpp_define (pfile, "__cpp_sized_deallocation=201309"); |