From 6238cb16f33c7e7cff5009feec3b7f6f4e51d495 Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Tue, 21 Apr 2015 19:17:20 +0000 Subject: [PATCH] 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 --- include/llvm/IR/DebugInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1