diff options
Diffstat (limited to 'lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | lib/CodeGen/CGDebugInfo.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index ba0c8ca8e2..fb851dd286 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/lib/CodeGen/CGDebugInfo.cpp @@ -1307,11 +1307,9 @@ static QualType UnwrapTypeForDebugInfo(QualType T) { case Type::TemplateSpecialization: T = cast<TemplateSpecializationType>(T)->desugar(); break; - case Type::TypeOfExpr: { - TypeOfExprType *Ty = cast<TypeOfExprType>(T); - T = Ty->getUnderlyingExpr()->getType(); + case Type::TypeOfExpr: + T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); break; - } case Type::TypeOf: T = cast<TypeOfType>(T)->getUnderlyingType(); break; |