зеркало из https://github.com/microsoft/clang-1.git
Correctly unwrap 'auto' types. Fixes PR9414.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@127121 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
a868c3799b
Коммит
ebc3279776
|
@ -1374,6 +1374,9 @@ static QualType UnwrapTypeForDebugInfo(QualType T) {
|
|||
case Type::SubstTemplateTypeParm:
|
||||
T = cast<SubstTemplateTypeParmType>(T)->getReplacementType();
|
||||
break;
|
||||
case Type::Auto:
|
||||
T = cast<AutoType>(T)->getDeducedType();
|
||||
break;
|
||||
}
|
||||
|
||||
assert(T != LastT && "Type unwrapping failed to unwrap!");
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
// RUN: %clang_cc1 -emit-llvm-only -std=c++0x -g %s
|
||||
|
||||
namespace PR9414 {
|
||||
int f() {
|
||||
auto x = 0;
|
||||
return x;
|
||||
}
|
||||
}
|
Загрузка…
Ссылка в новой задаче