re PR c++/65513 (gcc stops with "internal compiler error")

2015-03-24  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/65513
	* g++.dg/cpp0x/constexpr-array11.C: New.

From-SVN: r221620
This commit is contained in:
Paolo Carlini 2015-03-24 10:24:33 +00:00 committed by Paolo Carlini
parent bdb3744886
commit a9272fd042
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2015-03-24 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/65513
* g++.dg/cpp0x/constexpr-array11.C: New.
2015-03-24 Richard Biener <rguenther@suse.de>
PR middle-end/65517

View File

@ -0,0 +1,13 @@
// PR c++/65513
// { dg-do compile { target c++11 } }
template <typename _Tp> struct atomic {
atomic() = default;
atomic(_Tp);
};
struct {
atomic<bool> bReadyToFlush;
}
LogThreadsleLogEntries[10]{};