1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

More cruft from revert...

llvm-svn: 52809
This commit is contained in:
Bill Wendling 2008-06-27 01:37:37 +00:00
parent e0ea004d40
commit d19faaca94

View 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;
}