[llvm-commits] CVS: llvm/include/llvm/Analysis/LoopPass.h

Devang Patel dpatel at apple.com
Fri Feb 23 09:53:41 PST 2007



Changes in directory llvm/include/llvm/Analysis:

LoopPass.h updated: 1.5 -> 1.6
---
Log message:

Loop passes are set up to accept pointer.



---
Diffs of the changes:  (+1 -1)

 LoopPass.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/Analysis/LoopPass.h
diff -u llvm/include/llvm/Analysis/LoopPass.h:1.5 llvm/include/llvm/Analysis/LoopPass.h:1.6
--- llvm/include/llvm/Analysis/LoopPass.h:1.5	Thu Feb 22 18:36:57 2007
+++ llvm/include/llvm/Analysis/LoopPass.h	Fri Feb 23 11:53:16 2007
@@ -32,7 +32,7 @@
  public:
   // runOnLoop - THis method should be implemented by the subclass to perform
   // whatever action is necessary for the specfied Loop. 
-  virtual bool runOnLoop (Loop &L, LPPassManager &LPM) = 0;
+  virtual bool runOnLoop (Loop *L, LPPassManager &LPM) = 0;
   virtual bool runOnFunctionBody (Function &F, LPPassManager &LPM) { 
     return false; 
   }






More information about the llvm-commits mailing list