summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/SelectionDAGISel.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-02 22:30:08 +0000
committerChris Lattner <sabre@nondot.org>2010-03-02 22:30:08 +0000
commit6b7f39c8954e4b9ae20a37a1b5e7d0b31c19f5ee (patch)
treecb199d8c1aebcde836a1a596c6d8fae68b973cb2 /include/llvm/CodeGen/SelectionDAGISel.h
parentd1b738298359846b9cccaa0931e6ec1fc59a6d87 (diff)
downloadllvm-6b7f39c8954e4b9ae20a37a1b5e7d0b31c19f5ee.tar.gz
llvm-6b7f39c8954e4b9ae20a37a1b5e7d0b31c19f5ee.tar.bz2
llvm-6b7f39c8954e4b9ae20a37a1b5e7d0b31c19f5ee.tar.xz
remove 300 lines of code that is now dead in the MSP430 backend
now that isel handles chains more aggressively. This also allows us to make isLegalToFold non-virtual. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97597 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGISel.h')
-rw-r--r--include/llvm/CodeGen/SelectionDAGISel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGISel.h b/include/llvm/CodeGen/SelectionDAGISel.h
index 9ee8604c78..f88654caa1 100644
--- a/include/llvm/CodeGen/SelectionDAGISel.h
+++ b/include/llvm/CodeGen/SelectionDAGISel.h
@@ -97,8 +97,8 @@ public:
/// IsLegalToFold - Returns true if the specific operand node N of
/// U can be folded during instruction selection that starts at Root.
- virtual bool IsLegalToFold(SDValue N, SDNode *U, SDNode *Root,
- bool IgnoreChains = false) const;
+ bool IsLegalToFold(SDValue N, SDNode *U, SDNode *Root,
+ bool IgnoreChains = false) const;
/// CreateTargetHazardRecognizer - Return a newly allocated hazard recognizer
/// to use for this target when scheduling the DAG.