diff options
author | Dan Gohman <gohman@apple.com> | 2008-08-23 02:44:46 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-08-23 02:44:46 +0000 |
commit | 6ecf50908c78aae0feff1c378fbb75dcf013ed21 (patch) | |
tree | c87725f04aecc9c390b292c96b886302d38ee11b /lib/CodeGen/SelectionDAG/FastISel.cpp | |
parent | f350b277f32d7d47f86c0e54f4aec4d470500618 (diff) |
Make MBBMap a DenseMap instead of a std::map.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55220 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/FastISel.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/FastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp index fb4de574a8..ebac0fe33b 100644 --- a/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -145,7 +145,7 @@ BasicBlock::iterator FastISel::SelectInstructions(BasicBlock::iterator Begin, BasicBlock::iterator End, DenseMap<const Value*, unsigned> &ValueMap, - std::map<const BasicBlock*, + DenseMap<const BasicBlock*, MachineBasicBlock *> &MBBMap, MachineBasicBlock *mbb) { MBB = mbb; |