From: Anders Carlsson Date: Sat, 7 Nov 2009 01:19:37 +0000 (+0000) Subject: Revert r86315 and add Type::FixedWidthInt to the FIXME cases. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba578cb7b25357c479b2b5530546a9f153a525c0;p=clang Revert r86315 and add Type::FixedWidthInt to the FIXME cases. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86320 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index 1a8d643fd3..e2da3998c8 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/lib/CodeGen/CGDebugInfo.cpp @@ -854,8 +854,10 @@ llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty, // 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(Ty), Unit);