summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/RegAllocLocal.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-02-01 05:32:05 +0000
committerChris Lattner <sabre@nondot.org>2007-02-01 05:32:05 +0000
commit1003dc72b419592946c1b74b4cb26bceeeecdea9 (patch)
tree25c47bf3c047a971d84f6380acd7f8de69f82834 /llvm/lib/CodeGen/RegAllocLocal.cpp
parentdcdfa788b134e9ece98d16909f68d363c1d5727f (diff)
downloadbcm5719-llvm-1003dc72b419592946c1b74b4cb26bceeeecdea9.tar.gz
bcm5719-llvm-1003dc72b419592946c1b74b4cb26bceeeecdea9.zip
rename DenseMap to IndexedMap.
llvm-svn: 33749
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocLocal.cpp')
-rw-r--r--llvm/lib/CodeGen/RegAllocLocal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/RegAllocLocal.cpp b/llvm/lib/CodeGen/RegAllocLocal.cpp
index 644e221212a..74d76c14fc4 100644
--- a/llvm/lib/CodeGen/RegAllocLocal.cpp
+++ b/llvm/lib/CodeGen/RegAllocLocal.cpp
@@ -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];
OpenPOWER on IntegriCloud