From: Duncan P. N. Exon Smith Date: Tue, 21 Apr 2015 19:17:20 +0000 (+0000) Subject: DebugInfo: Use MDType in DITypeIdentifierMap X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6238cb16f33c7e7cff5009feec3b7f6f4e51d495;p=oota-llvm.git DebugInfo: Use MDType in DITypeIdentifierMap Use `MDType*` instead of `MDNode*` in `DITypeIdentifierMap`, since all the members should be types. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235407 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/IR/DebugInfo.h b/include/llvm/IR/DebugInfo.h index e6f3cf941d8..c12cc0c1c94 100644 --- a/include/llvm/IR/DebugInfo.h +++ b/include/llvm/IR/DebugInfo.h @@ -34,7 +34,7 @@ class DbgDeclareInst; class DbgValueInst; /// \brief Maps from type identifier to the actual MDNode. -typedef DenseMap DITypeIdentifierMap; +typedef DenseMap DITypeIdentifierMap; typedef DebugNodeArray DIArray; typedef MDTypeRefArray DITypeArray;