forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2014-04-04 Paolo Carlini <[email protected]> PR c++/58207 * semantics.c (sort_constexpr_mem_initializers): Robustify loop. /testsuite 2014-04-04 Paolo Carlini <[email protected]> PR c++/58207 * g++.dg/cpp0x/constexpr-ice15.C: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@209128 138bc75d-0d04-0410-961f-82ee72b054a4
- Loading branch information
paolo
committed
Apr 4, 2014
1 parent
12b772b
commit fb73bd5
Showing
4 changed files
with
29 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2014-04-04 Paolo Carlini <[email protected]> | ||
|
||
PR c++/58207 | ||
* semantics.c (sort_constexpr_mem_initializers): Robustify loop. | ||
|
||
2014-04-04 Patrick Palka <[email protected]> | ||
|
||
PR c++/44613 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2014-04-04 Paolo Carlini <[email protected]> | ||
|
||
PR c++/58207 | ||
* g++.dg/cpp0x/constexpr-ice15.C: New. | ||
|
||
2014-04-04 Jan Hubicka <[email protected]> | ||
|
||
PR ipa/59626 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// PR c++/58207 | ||
// { dg-do compile { target c++11 } } | ||
|
||
struct A | ||
{ | ||
virtual bool foo (); | ||
}; | ||
|
||
struct B : public A | ||
{ | ||
constexpr B () : A (&::n) {} // { dg-error "declared" } | ||
}; |