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 | |
parent | 38083ac28fab0c74efd11bafcbf1aab90641a46d (diff) | |
download | gcc-26f0e1d68ad731ea8bc2ec2dca4f23a12f878d03.tar.gz |
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')
-rw-r--r-- | gcc/c-family/ChangeLog | 10 | ||||
-rw-r--r-- | gcc/c-family/c-cppbuiltin.c | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 4052b5edc74..a28ef60b984 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,13 @@ +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. + 2014-10-29 Richard Sandiford <richard.sandiford@arm.com> * c-common.c, c-common.h, c-cppbuiltin.c, c-lex.c: Remove redundant diff --git a/gcc/c-family/c-cppbuiltin.c b/gcc/c-family/c-cppbuiltin.c index 803f146ad02..26fabc2e4c4 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"); |