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:
Anders Carlsson 2011-03-06 16:43:04 +00:00
Родитель a868c3799b
Коммит ebc3279776
2 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -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;
}
}