Make FastISel's constructor protected, and give it a destructor.
authorDan Gohman <gohman@apple.com>
Thu, 14 Aug 2008 21:51:29 +0000 (21:51 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 14 Aug 2008 21:51:29 +0000 (21:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54793 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/FastISel.h
lib/CodeGen/SelectionDAG/FastISel.cpp

index ee0e120327b47a160c51176389fc19c2e756417f..bd00e4fa2a528252e3f6d8fbc196be932eacfe01 100644 (file)
@@ -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,
index 6fe941fecbf58d0fd63b779b5a808ad83cf69179..f4d453966b8eebdcbcdfe9b54b28459be1881c08 100644 (file)
@@ -45,6 +45,8 @@ FastISel::SelectInstructions(BasicBlock::iterator Begin, BasicBlock::iterator En
   return I;
 }
 
+FastISel::~FastISel() {}
+
 unsigned FastISel::FastEmit_(MVT::SimpleValueType, ISD::NodeType) {
   return 0;
 }