re PR c++/63306 (ICE: Segmentation fault in analyze_functions())

PR c++/63306
	* g++.dg/ipa/pr63306.C: New test.

From-SVN: r215779
This commit is contained in:
Jakub Jelinek 2014-10-01 22:42:23 +02:00 committed by Jakub Jelinek
parent 7cf4833e8d
commit af27dfc447
2 changed files with 17 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2014-10-01 Jakub Jelinek <jakub@redhat.com>
PR c++/63306
* g++.dg/ipa/pr63306.C: New test.
PR target/63428
* gcc.dg/torture/vshuf-4.inc: Move test 122 from EXPTESTS
to test 24 in TESTS.

View File

@ -0,0 +1,14 @@
// PR c++/63306
// { dg-do compile { target c++11 } }
template <typename...>
class A;
class B
{
B (const int &, const A<int, int> &);
};
B::B (const int &, const A<int, int> &)
{
}