[llvm-commits] [llvm] r52809 - /llvm/trunk/include/llvm/CodeGen/MachineModuleInfo.h
Bill Wendling
isanbard at gmail.com
Thu Jun 26 18:37:37 PDT 2008
Author: void
Date: Thu Jun 26 20:37:37 2008
New Revision: 52809
URL: http://llvm.org/viewvc/llvm-project?rev=52809&view=rev
Log:
More cruft from revert...
Modified:
llvm/trunk/include/llvm/CodeGen/MachineModuleInfo.h
Modified: llvm/trunk/include/llvm/CodeGen/MachineModuleInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/MachineModuleInfo.h?rev=52809&r1=52808&r2=52809&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/MachineModuleInfo.h (original)
+++ llvm/trunk/include/llvm/CodeGen/MachineModuleInfo.h Thu Jun 26 20:37:37 2008
@@ -87,9 +87,9 @@
/// 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;
}
More information about the llvm-commits
mailing list