diff options
author | Owen Anderson <resistor@mac.com> | 2008-08-13 22:08:30 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2008-08-13 22:08:30 +0000 |
commit | 20e2839cb975a2d4ee931e1ea4c4660a36ef0177 (patch) | |
tree | 845966a47f1465c73c0469e7cede6f549d8e2190 /lib/CodeGen/LiveIntervalAnalysis.cpp | |
parent | 6ab6422f25f3deb1041130ff6bb285b22586ab32 (diff) |
Move r2iMap_ over to DenseMap from std::map.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54765 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveIntervalAnalysis.cpp')
-rw-r--r-- | lib/CodeGen/LiveIntervalAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index db8a5a0f4c..742ef5c2df 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/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; |