diff options
author | Dan Gohman <gohman@apple.com> | 2008-08-21 16:06:51 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-08-21 16:06:51 +0000 |
commit | 815ffa24c498de777e699b5cd17236fa4e1a735e (patch) | |
tree | 7e29bd9b4a6d7420cd0c7da099b024853afdbdd6 | |
parent | ec20183c35f1a8d308b619dbe580d0ed0db21d12 (diff) |
SelectionDAGISel::SelectRootInit does not need to be virtual.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55122 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGISel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGISel.h b/include/llvm/CodeGen/SelectionDAGISel.h index 77e75c0d86..951efe1975 100644 --- a/include/llvm/CodeGen/SelectionDAGISel.h +++ b/include/llvm/CodeGen/SelectionDAGISel.h @@ -61,7 +61,7 @@ public: virtual void InstructionSelect(SelectionDAG &SD) = 0; virtual void InstructionSelectPostProcessing() {} - virtual void SelectRootInit() { + void SelectRootInit() { DAGSize = CurDAG->AssignTopologicalOrder(TopOrder); } |