Enable Objective-C interface debug info.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65850 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp
index 101dae0..63ba0df 100644
--- a/lib/CodeGen/CGDebugInfo.cpp
+++ b/lib/CodeGen/CGDebugInfo.cpp
@@ -493,7 +493,6 @@
   case Type::Vector:
   case Type::ExtVector:
   case Type::ExtQual:
-  case Type::ObjCInterface:
   case Type::ObjCQualifiedInterface:
   case Type::ObjCQualifiedId:
   case Type::FixedWidthInt:
@@ -504,6 +503,8 @@
     // Unsupported types
     return llvm::DIType();
 
+  case Type::ObjCInterface: 
+    Slot = CreateType(cast<ObjCInterfaceType>(Ty), Unit); break;
   case Type::Builtin: Slot = CreateType(cast<BuiltinType>(Ty), Unit); break;
   case Type::Pointer: Slot = CreateType(cast<PointerType>(Ty), Unit); break;
   case Type::Typedef: Slot = CreateType(cast<TypedefType>(Ty), Unit); break;