More cruft from revert...
authorBill Wendling <isanbard@gmail.com>
Fri, 27 Jun 2008 01:37:37 +0000 (01:37 +0000)
committerBill Wendling <isanbard@gmail.com>
Fri, 27 Jun 2008 01:37:37 +0000 (01:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52809 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineModuleInfo.h

index f2a2b7b674c4c6afbe032666b295d6cbf8cfc727..63d50a9e3a4d6ea2ffef9268657672b9e51a568b 100644 (file)
@@ -87,9 +87,9 @@ public:
 /// into DebugInfoDesc objects.
 class DIDeserializer {
   // Previously defined gloabls.
-  DenseMap<GlobalVariable*, DebugInfoDesc*> GlobalDescs;
+  std::map<GlobalVariable*, DebugInfoDesc*> GlobalDescs;
 public:
-  const DenseMap<GlobalVariable *, DebugInfoDesc *> &getGlobalDescs() const {
+  const std::map<GlobalVariable *, DebugInfoDesc *> &getGlobalDescs() const {
     return GlobalDescs;
   }