summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-08-23 02:44:46 +0000
committerDan Gohman <gohman@apple.com>2008-08-23 02:44:46 +0000
commit6ecf50908c78aae0feff1c378fbb75dcf013ed21 (patch)
treec87725f04aecc9c390b292c96b886302d38ee11b /include
parentf350b277f32d7d47f86c0e54f4aec4d470500618 (diff)
downloadllvm-6ecf50908c78aae0feff1c378fbb75dcf013ed21.tar.gz
llvm-6ecf50908c78aae0feff1c378fbb75dcf013ed21.tar.bz2
llvm-6ecf50908c78aae0feff1c378fbb75dcf013ed21.tar.xz
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 'include')
-rw-r--r--include/llvm/CodeGen/FastISel.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/FastISel.h b/include/llvm/CodeGen/FastISel.h
index 4355113435..636081f6b9 100644
--- a/include/llvm/CodeGen/FastISel.h
+++ b/include/llvm/CodeGen/FastISel.h
@@ -17,7 +17,6 @@
#include "llvm/BasicBlock.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/CodeGen/SelectionDAGNodes.h"
-#include <map>
namespace llvm {
@@ -53,7 +52,7 @@ public:
BasicBlock::iterator
SelectInstructions(BasicBlock::iterator Begin, BasicBlock::iterator End,
DenseMap<const Value*, unsigned> &ValueMap,
- std::map<const BasicBlock*, MachineBasicBlock *> &MBBMap,
+ DenseMap<const BasicBlock*, MachineBasicBlock *> &MBBMap,
MachineBasicBlock *MBB);
virtual ~FastISel();