Revert r86315 and add Type::FixedWidthInt to the FIXME cases.

llvm-svn: 86320
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp
index 1a8d643..e2da399 100644
--- a/clang/lib/CodeGen/CGDebugInfo.cpp
+++ b/clang/lib/CodeGen/CGDebugInfo.cpp
@@ -854,8 +854,10 @@
   // FIXME: Handle these.
   case Type::ExtVector:
   case Type::Vector:
+  case Type::FixedWidthInt:
     return llvm::DIType();
   default:
+    assert(false && "Unhandled type class!");
     return llvm::DIType();
   case Type::ObjCObjectPointer:
     return CreateType(cast<ObjCObjectPointerType>(Ty), Unit);