summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2008-08-13 22:08:30 +0000
committerOwen Anderson <resistor@mac.com>2008-08-13 22:08:30 +0000
commit767b5cc7fd708ada02e937f87c449ae5135659a9 (patch)
tree5f9276a1a346fbd640ab76354b3210e4b0dbdd71 /llvm/lib/CodeGen
parent7e3c3922486c3bf23be0cbc968d5589913822faa (diff)
downloadbcm5719-llvm-767b5cc7fd708ada02e937f87c449ae5135659a9.tar.gz
bcm5719-llvm-767b5cc7fd708ada02e937f87c449ae5135659a9.zip
Move r2iMap_ over to DenseMap from std::map.
llvm-svn: 54765
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/LiveIntervalAnalysis.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
index db8a5a0f4c1..742ef5c2df9 100644
--- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -72,7 +72,7 @@ void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
void LiveIntervals::releaseMemory() {
// Free the live intervals themselves.
- for (std::map<unsigned, LiveInterval*>::iterator I = r2iMap_.begin(),
+ for (DenseMap<unsigned, LiveInterval*>::iterator I = r2iMap_.begin(),
E = r2iMap_.end(); I != E; ++I)
delete I->second;
OpenPOWER on IntegriCloud