mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 02:24:22 +00:00
Use StringMap for greater justice!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53202 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -37,6 +37,7 @@
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/UniqueVector.h"
|
||||
#include "llvm/ADT/SmallPtrSet.h"
|
||||
#include "llvm/ADT/StringMap.h"
|
||||
#include "llvm/GlobalValue.h"
|
||||
#include "llvm/Pass.h"
|
||||
|
||||
@ -777,7 +778,7 @@ class DISerializer {
|
||||
DenseMap<DebugInfoDesc *, GlobalVariable *> DescGlobals;
|
||||
|
||||
// Previously defined strings.
|
||||
DenseMap<const char *, Constant*> StringCache;
|
||||
StringMap<Constant*> StringCache;
|
||||
public:
|
||||
DISerializer()
|
||||
: M(NULL), StrPtrTy(NULL), EmptyStructPtrTy(NULL), TagTypes(),
|
||||
|
Reference in New Issue
Block a user