[llvm-commits] CVS: llvm/include/llvm/Transforms/Scalar.h

Misha Brukman brukman at cs.uiuc.edu
Fri Nov 7 11:20:01 PST 2003


Changes in directory llvm/include/llvm/Transforms:

Scalar.h updated: 1.28 -> 1.29

---
Log message:

Declare FunctionPasses as such.


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

Index: llvm/include/llvm/Transforms/Scalar.h
diff -u llvm/include/llvm/Transforms/Scalar.h:1.28 llvm/include/llvm/Transforms/Scalar.h:1.29
--- llvm/include/llvm/Transforms/Scalar.h:1.28	Mon Oct 20 15:19:47 2003
+++ llvm/include/llvm/Transforms/Scalar.h	Fri Nov  7 11:19:39 2003
@@ -101,7 +101,7 @@
 // examining the SSA value graph of the function, instead of doing slow
 // bit-vector computations.
 //
-Pass *createGCSEPass();
+FunctionPass *createGCSEPass();
 
 
 //===----------------------------------------------------------------------===//
@@ -132,7 +132,7 @@
 // LICM - This pass is a simple natural loop based loop invariant code motion
 // pass.
 //
-Pass *createLICMPass();
+FunctionPass *createLICMPass();
 
 
 //===----------------------------------------------------------------------===//
@@ -179,7 +179,7 @@
 //
 // For example:  4 + (x + 5)  ->  x + (4 + 5)
 //
-Pass *createReassociatePass();
+FunctionPass *createReassociatePass();
 
 //===----------------------------------------------------------------------===//
 //





More information about the llvm-commits mailing list