aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2008-08-13 21:24:24 +0000
committerOwen Anderson <resistor@mac.com>2008-08-13 21:24:24 +0000
commit49bfdd63f481237fa7305525517ea0dc9e1bd23c (patch)
tree3138a6946fade715815c54032f1e961f0f261cf8
parent2edeb63eced945bfa2af7d5c6a6bb0fe3503a070 (diff)
downloadexternal_llvm-49bfdd63f481237fa7305525517ea0dc9e1bd23c.zip
external_llvm-49bfdd63f481237fa7305525517ea0dc9e1bd23c.tar.gz
external_llvm-49bfdd63f481237fa7305525517ea0dc9e1bd23c.tar.bz2
Switch this from std::map to DenseMap.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54761 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/LiveIntervalAnalysis.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/LiveIntervalAnalysis.h b/include/llvm/CodeGen/LiveIntervalAnalysis.h
index 039aac5..a3612b1 100644
--- a/include/llvm/CodeGen/LiveIntervalAnalysis.h
+++ b/include/llvm/CodeGen/LiveIntervalAnalysis.h
@@ -80,7 +80,7 @@ namespace llvm {
/// FunctionSize - The number of instructions present in the function
uint64_t FunctionSize;
- typedef std::map<MachineInstr*, unsigned> Mi2IndexMap;
+ typedef DenseMap<MachineInstr*, unsigned> Mi2IndexMap;
Mi2IndexMap mi2iMap_;
typedef std::vector<MachineInstr*> Index2MiMap;