Commit e4b71114 by Paolo Carlini Committed by Paolo Carlini

re PR c++/53401 ([C++11] internal compiler error: Segmentation fault on infinite…

re PR c++/53401 ([C++11] internal compiler error: Segmentation fault on infinite argument deduction of constexpr templates)

2016-05-23  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/53401
	* g++.dg/cpp0x/decltype64.C: New.

From-SVN: r236581
parent a25a8058
2016-05-23 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/53401
* g++.dg/cpp0x/decltype64.C: New.
2016-05-23 Christophe Lyon <christophe.lyon@linaro.org> 2016-05-23 Christophe Lyon <christophe.lyon@linaro.org>
* gcc.target/aarch64/advsimd-intrinsics/vreinterpret.c: Add fp16 tests. * gcc.target/aarch64/advsimd-intrinsics/vreinterpret.c: Add fp16 tests.
......
// PR c++/53401
// { dg-do compile { target c++11 } }
template<int I>
struct index
{};
constexpr int recursive_impl(index<0u>)
{
return 0;
}
template<int N>
constexpr auto recursive_impl(index<N>)
-> decltype(recursive_impl(index<N - 1>())) // { dg-error "depth" }
{
return recursive_impl(index<N - 1>());
}
template<int N>
constexpr auto recursive()
-> decltype(recursive_impl(index<N>()))
{
return recursive_impl(index<N>());
}
void f(int i)
{
recursive<1>(); // { dg-message "from here" }
}
// { dg-prune-output "compilation terminated" }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment