From: Chris Lattner Date: Fri, 10 May 2002 22:44:16 +0000 (+0000) Subject: Add prototype for LICM pass X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0fe215350770dff3158fe596dfea471af290e8bb;p=oota-llvm.git Add prototype for LICM pass git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2612 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Transforms/Scalar.h b/include/llvm/Transforms/Scalar.h index b649deec108..898b604da94 100644 --- a/include/llvm/Transforms/Scalar.h +++ b/include/llvm/Transforms/Scalar.h @@ -96,6 +96,14 @@ Pass *createIndVarSimplifyPass(); 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