diff options
| -rw-r--r-- | llvm/include/llvm/Transforms/Scalar.h | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/include/llvm/Transforms/Scalar.h b/llvm/include/llvm/Transforms/Scalar.h index b649deec108..898b604da94 100644 --- a/llvm/include/llvm/Transforms/Scalar.h +++ b/llvm/include/llvm/Transforms/Scalar.h @@ -98,6 +98,14 @@ Pass *createInstructionCombiningPass();  //===----------------------------------------------------------------------===//  // +// LICM - This pass is a simple natural loop based loop invariant code motion +// pass. +// +Pass *createLICMPass(); + + +//===----------------------------------------------------------------------===// +//  // PiNodeInsertion - This pass inserts single entry Phi nodes into basic blocks  // that are preceeded by a conditional branch, where the branch gives  // information about the operands of the condition.  For example, this C code:  | 

