diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-02 22:30:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-02 22:30:08 +0000 |
commit | 6b7f39c8954e4b9ae20a37a1b5e7d0b31c19f5ee (patch) | |
tree | cb199d8c1aebcde836a1a596c6d8fae68b973cb2 /include | |
parent | d1b738298359846b9cccaa0931e6ec1fc59a6d87 (diff) | |
download | external_llvm-6b7f39c8954e4b9ae20a37a1b5e7d0b31c19f5ee.zip external_llvm-6b7f39c8954e4b9ae20a37a1b5e7d0b31c19f5ee.tar.gz external_llvm-6b7f39c8954e4b9ae20a37a1b5e7d0b31c19f5ee.tar.bz2 |
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')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGISel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGISel.h b/include/llvm/CodeGen/SelectionDAGISel.h index 9ee8604..f88654c 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. |