aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/FastISel.h
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
commit42e10a8a7f9ad7590bd88473b41ebaab9a5f98df (patch)
treec87725f04aecc9c390b292c96b886302d38ee11b /include/llvm/CodeGen/FastISel.h
parent14a6644251df9ccb261bb4e3ab386b738df36633 (diff)
downloadexternal_llvm-42e10a8a7f9ad7590bd88473b41ebaab9a5f98df.zip
external_llvm-42e10a8a7f9ad7590bd88473b41ebaab9a5f98df.tar.gz
external_llvm-42e10a8a7f9ad7590bd88473b41ebaab9a5f98df.tar.bz2
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/llvm/CodeGen/FastISel.h')
-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 4355113..636081f 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();