From 4c174a7bbaf3ecba6473b8a5dd49e0b4fc8f1c96 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 18 Apr 2004 05:20:32 +0000 Subject: [PATCH] Add prototype git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13029 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Transforms/Scalar.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/include/llvm/Transforms/Scalar.h b/include/llvm/Transforms/Scalar.h index 7acc7a6a12d..b34b1222be9 100644 --- a/include/llvm/Transforms/Scalar.h +++ b/include/llvm/Transforms/Scalar.h @@ -131,12 +131,18 @@ Pass *createInstructionCombiningPass(); //===----------------------------------------------------------------------===// // -// LICM - This pass is a simple natural loop based loop invariant code motion -// pass. +// LICM - This pass is a loop invariant code motion and memory promotion pass. // FunctionPass *createLICMPass(); +//===----------------------------------------------------------------------===// +// +// LoopUnroll - This pass is a simple loop unrolling pass. +// +FunctionPass *createLoopUnrollPass(); + + //===----------------------------------------------------------------------===// // // PiNodeInsertion - This pass inserts single entry Phi nodes into basic blocks -- 2.34.1