summaryrefslogtreecommitdiffstats
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
commit177f2fab3d07eb954ac0f4e373450c2a2b9682c2 (patch)
tree79430042b6b463b62bdf13d7c8ca68e98b2719ee
parent8ded5d588455e7ab64ddd25d9ba1509b49746c3b (diff)
downloadbcm5719-llvm-177f2fab3d07eb954ac0f4e373450c2a2b9682c2.tar.gz
bcm5719-llvm-177f2fab3d07eb954ac0f4e373450c2a2b9682c2.zip
Switch this from std::map to DenseMap.
llvm-svn: 54761
-rw-r--r--llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h b/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
index 039aac543b3..a3612b13aa2 100644
--- a/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
+++ b/llvm/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;
OpenPOWER on IntegriCloud