aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGDebugInfo.cpp
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2009-11-07 01:19:37 +0000
committerAnders Carlsson <andersca@mac.com>2009-11-07 01:19:37 +0000
commitba578cb7b25357c479b2b5530546a9f153a525c0 (patch)
tree562064cf9451e394c8c27300e70c967bca2ebdcf /lib/CodeGen/CGDebugInfo.cpp
parenteadfeb59cb9fecdb7d86c0ba0be8ad5c2754927c (diff)
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
Diffstat (limited to 'lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r--lib/CodeGen/CGDebugInfo.cpp2
1 files changed, 2 insertions, 0 deletions
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<ObjCObjectPointerType>(Ty), Unit);