SelectionDAGISel::SelectRootInit does not need to be virtual.
authorDan Gohman <gohman@apple.com>
Thu, 21 Aug 2008 16:06:51 +0000 (16:06 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 21 Aug 2008 16:06:51 +0000 (16:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55122 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/SelectionDAGISel.h

index 77e75c0d86da3749ea87f0921107af046d774c86..951efe1975fa23d0935759c8a9a6498db4187eed 100644 (file)
@@ -61,7 +61,7 @@ public:
   virtual void InstructionSelect(SelectionDAG &SD) = 0;
   virtual void InstructionSelectPostProcessing() {}
   
-  virtual void SelectRootInit() {
+  void SelectRootInit() {
     DAGSize = CurDAG->AssignTopologicalOrder(TopOrder);
   }