diff options
author | Owen Anderson <resistor@mac.com> | 2008-08-13 21:24:24 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2008-08-13 21:24:24 +0000 |
commit | 177f2fab3d07eb954ac0f4e373450c2a2b9682c2 (patch) | |
tree | 79430042b6b463b62bdf13d7c8ca68e98b2719ee | |
parent | 8ded5d588455e7ab64ddd25d9ba1509b49746c3b (diff) | |
download | bcm5719-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.h | 2 |
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; |