From 78d9c1daa5a336d09bd579831d86318557ee6982 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. llvm-svn: 235407 --- llvm/include/llvm/IR/DebugInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/IR/DebugInfo.h b/llvm/include/llvm/IR/DebugInfo.h index e6f3cf9..c12cc0c 100644 --- a/llvm/include/llvm/IR/DebugInfo.h +++ b/llvm/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.7.4