[llvm-commits] [llvm] r67675 - /llvm/trunk/lib/Analysis/DebugInfo.cpp
Devang Patel
dpatel at apple.com
Tue Mar 24 20:52:12 PDT 2009
Author: dpatel
Date: Tue Mar 24 22:52:06 2009
New Revision: 67675
URL: http://llvm.org/viewvc/llvm-project?rev=67675&view=rev
Log:
Do not ignore DW_TAG_class_type!
Modified:
llvm/trunk/lib/Analysis/DebugInfo.cpp
Modified: llvm/trunk/lib/Analysis/DebugInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/DebugInfo.cpp?rev=67675&r1=67674&r2=67675&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/DebugInfo.cpp (original)
+++ llvm/trunk/lib/Analysis/DebugInfo.cpp Tue Mar 24 22:52:06 2009
@@ -150,6 +150,7 @@
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;
More information about the llvm-commits
mailing list