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 | e468611c125854a2eff59f699700cdd916737819 (patch) | |
tree | 09d0e369bfd7a98a27ed2069a7207abdf10497c3 /lib/CodeGen/CGDebugInfo.cpp | |
parent | 0284fdc5855c21545c58f0fe8edd5a680e0b29ea (diff) |
Do not assert if debug info for certain type is not generated.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86315 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | lib/CodeGen/CGDebugInfo.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index e1d1c19e58..1a8d643fd3 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/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); |