aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-08-14 21:51:29 +0000
committerDan Gohman <gohman@apple.com>2008-08-14 21:51:29 +0000
commite285a74f7cf9dd3ccf4fe758576cf83301f8a43e (patch)
treee32198df2a137da555e70e8c9ff06509418595da /include
parent1df183f554eb742e874ebc14af60694540e5d0f8 (diff)
downloadexternal_llvm-e285a74f7cf9dd3ccf4fe758576cf83301f8a43e.zip
external_llvm-e285a74f7cf9dd3ccf4fe758576cf83301f8a43e.tar.gz
external_llvm-e285a74f7cf9dd3ccf4fe758576cf83301f8a43e.tar.bz2
Make FastISel's constructor protected, and give it a destructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54793 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/FastISel.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/FastISel.h b/include/llvm/CodeGen/FastISel.h
index ee0e120..bd00e4f 100644
--- a/include/llvm/CodeGen/FastISel.h
+++ b/include/llvm/CodeGen/FastISel.h
@@ -34,10 +34,6 @@ class FastISel {
const TargetInstrInfo *TII;
public:
- FastISel(MachineBasicBlock *mbb, MachineFunction *mf,
- const TargetInstrInfo *tii)
- : MBB(mbb), MF(mf), TII(tii) {}
-
/// SelectInstructions - Do "fast" instruction selection over the
/// LLVM IR instructions in the range [Begin, N) where N is either
/// End or the first unsupported instruction. Return N.
@@ -48,6 +44,12 @@ public:
DenseMap<const Value*, unsigned> &ValueMap);
protected:
+ FastISel(MachineBasicBlock *mbb, MachineFunction *mf,
+ const TargetInstrInfo *tii)
+ : MBB(mbb), MF(mf), TII(tii) {}
+
+ virtual ~FastISel();
+
virtual unsigned FastEmit_(MVT::SimpleValueType VT,
ISD::NodeType Opcode);
virtual unsigned FastEmit_r(MVT::SimpleValueType VT,