diff options
author | Devang Patel <dpatel@apple.com> | 2009-03-25 03:52:06 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-03-25 03:52:06 +0000 |
commit | 25cb0d75d0525cf36a678a28a4281a941fb8d7a7 (patch) | |
tree | a0e9e1e7f9270352078218e5aa884221815ab191 /lib | |
parent | 23120babfaa23e1ecfe374866f498855dbe5fe27 (diff) |
Do not ignore DW_TAG_class_type!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67675 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Analysis/DebugInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Analysis/DebugInfo.cpp b/lib/Analysis/DebugInfo.cpp index d9f0aa53e9..5a8e5cb90b 100644 --- a/lib/Analysis/DebugInfo.cpp +++ b/lib/Analysis/DebugInfo.cpp @@ -150,6 +150,7 @@ bool DIType::isCompositeType(unsigned TAG) { case dwarf::DW_TAG_enumeration_type: case dwarf::DW_TAG_vector_type: case dwarf::DW_TAG_subroutine_type: + case dwarf::DW_TAG_class_type: return true; default: return false; |