From 0fe215350770dff3158fe596dfea471af290e8bb Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 10 May 2002 22:44:16 +0000 Subject: [PATCH] Add prototype for LICM pass git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2612 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Transforms/Scalar.h | 8 ++++++++ 1 file changed, 8 insertions(+) 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 -- 2.34.1