aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineModuleInfo.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2008-06-27 01:37:37 +0000
committerBill Wendling <isanbard@gmail.com>2008-06-27 01:37:37 +0000
commit83b28890d8dc3f442a10b91b04fc59ceeec3c21f (patch)
treef7f6949c09eaf55df1f8ced055a58aa804033e9e /include/llvm/CodeGen/MachineModuleInfo.h
parent0ac1b6d768411cb84fbf7df3ff759331b816d111 (diff)
More cruft from revert...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52809 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineModuleInfo.h')
-rw-r--r--include/llvm/CodeGen/MachineModuleInfo.h4
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;
}