diff options
Diffstat (limited to 'include/llvm/CodeGen/MachineModuleInfo.h')
-rw-r--r-- | include/llvm/CodeGen/MachineModuleInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineModuleInfo.h b/include/llvm/CodeGen/MachineModuleInfo.h index f2a2b7b674..63d50a9e3a 100644 --- a/include/llvm/CodeGen/MachineModuleInfo.h +++ b/include/llvm/CodeGen/MachineModuleInfo.h @@ -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; } |