Commit a7ddca92 by Jason Merrill Committed by Jason Merrill

* mangle.c (write_type): Mangle decltype(auto).

From-SVN: r198150
parent e973d6dd
2013-04-22 Jason Merrill <jason@redhat.com>
* mangle.c (write_type): Mangle decltype(auto).
2013-04-19 Jason Merrill <jason@redhat.com>
N3638 changes to return type deduction
......
......@@ -2019,7 +2019,10 @@ write_type (tree type)
case TEMPLATE_TYPE_PARM:
if (is_auto (type))
{
write_identifier ("Da");
if (AUTO_IS_DECLTYPE (type))
write_identifier ("Dc");
else
write_identifier ("Da");
++is_builtin_type;
break;
}
......
// Mangling for decltype(auto)
// { dg-options "-std=c++1y" }
void f();
// { dg-final { scan-assembler "_Z2g1IiEDcv" } }
template <class T> decltype(auto) g1() { return &f; }
template decltype(auto) g1<int>();
// { dg-final { scan-assembler "_Z2g2IiEDav" } }
template <class T> auto g2() { return &f; }
template auto g2<int>();
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