mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 23:17:16 +00:00
rename DenseMap to IndexedMap.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33749 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/IndexedMap.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
#include <algorithm>
|
||||
@@ -55,7 +55,7 @@ namespace {
|
||||
|
||||
// Virt2PhysRegMap - This map contains entries for each virtual register
|
||||
// that is currently available in a physical register.
|
||||
DenseMap<unsigned, VirtReg2IndexFunctor> Virt2PhysRegMap;
|
||||
IndexedMap<unsigned, VirtReg2IndexFunctor> Virt2PhysRegMap;
|
||||
|
||||
unsigned &getVirt2PhysRegMapSlot(unsigned VirtReg) {
|
||||
return Virt2PhysRegMap[VirtReg];
|
||||
|
||||
Reference in New Issue
Block a user