[llvm-commits] [llvm] r74320 - /llvm/trunk/include/llvm/Analysis/LoopPass.h

Jeffrey Yasskin jyasskin at google.com
Fri Jun 26 13:42:51 PDT 2009


Author: jyasskin
Date: Fri Jun 26 15:42:50 2009
New Revision: 74320

URL: http://llvm.org/viewvc/llvm-project?rev=74320&view=rev
Log:
Delete LoopPass::runOnFunctionBody.  It was never used or implemented.

Modified:
    llvm/trunk/include/llvm/Analysis/LoopPass.h

Modified: llvm/trunk/include/llvm/Analysis/LoopPass.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/LoopPass.h?rev=74320&r1=74319&r2=74320&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Analysis/LoopPass.h (original)
+++ llvm/trunk/include/llvm/Analysis/LoopPass.h Fri Jun 26 15:42:50 2009
@@ -34,9 +34,6 @@
   // 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) {





More information about the llvm-commits mailing list