diff options
author | Devang Patel <dpatel@apple.com> | 2009-11-07 00:29:05 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-11-07 00:29:05 +0000 |
commit | 5b39e2382f991880cdec64632cdfd65135468c8b (patch) | |
tree | 0ce5551eaab3e8221065f551815102da29aa63ba /clang/lib/CodeGen/CGDebugInfo.cpp | |
parent | 8f77e948e50f7cc7fb18164935df1746a23691c1 (diff) | |
download | bcm5719-llvm-5b39e2382f991880cdec64632cdfd65135468c8b.tar.gz bcm5719-llvm-5b39e2382f991880cdec64632cdfd65135468c8b.zip |
Do not assert if debug info for certain type is not generated.
llvm-svn: 86315
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index e1d1c19e58f..1a8d643fd3c 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -856,7 +856,6 @@ llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty, case Type::Vector: return llvm::DIType(); default: - assert(false && "Unhandled type class!"); return llvm::DIType(); case Type::ObjCObjectPointer: return CreateType(cast<ObjCObjectPointerType>(Ty), Unit); |