diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2009-06-26 20:42:50 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2009-06-26 20:42:50 +0000 |
commit | d8ac1be6862c0611cc0b3a726ad4c3141e7a3d9e (patch) | |
tree | 3db7fd18a970302c12e830bb484a68928f4f0eef | |
parent | b41b5e0b2d865f9dcb8cc868b28929daf3a11207 (diff) |
Delete LoopPass::runOnFunctionBody. It was never used or implemented.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74320 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/LoopPass.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/Analysis/LoopPass.h b/include/llvm/Analysis/LoopPass.h index ca41e51aa0..7659b5bf45 100644 --- a/include/llvm/Analysis/LoopPass.h +++ b/include/llvm/Analysis/LoopPass.h @@ -34,9 +34,6 @@ public: // runOnLoop - This method should be implemented by the subclass to perform // whatever action is necessary for the specified Loop. virtual bool runOnLoop(Loop *L, LPPassManager &LPM) = 0; - virtual bool runOnFunctionBody(Function &F, LPPassManager &LPM) { - return false; - } // Initialization and finalization hooks. virtual bool doInitialization(Loop *L, LPPassManager &LPM) { |