Fix enumeration in switch warnings. No behavior change.
llvm-svn: 65659
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp
index 6c67ba5..62b9f4a 100644
--- a/clang/lib/CodeGen/CGDebugInfo.cpp
+++ b/clang/lib/CodeGen/CGDebugInfo.cpp
@@ -496,6 +496,12 @@
case Type::ObjCInterface:
case Type::ObjCQualifiedInterface:
case Type::ObjCQualifiedId:
+ case Type::FixedWidthInt:
+ case Type::BlockPointer:
+ case Type::MemberPointer:
+ case Type::ClassTemplateSpecialization:
+ case Type::ObjCQualifiedClass:
+ // Unsupported types
return llvm::DIType();
case Type::Builtin: Slot = CreateType(cast<BuiltinType>(Ty), Unit); break;