From 8277567dc6c7247956726c8ebdbd0547b0d72e56 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 19 Apr 2004 06:28:37 +0000 Subject: [PATCH] Add accessor for a Loop Unswitching pass git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13066 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Transforms/Scalar.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/llvm/Transforms/Scalar.h b/include/llvm/Transforms/Scalar.h index b34b1222be9..db84f7cb609 100644 --- a/include/llvm/Transforms/Scalar.h +++ b/include/llvm/Transforms/Scalar.h @@ -136,6 +136,13 @@ Pass *createInstructionCombiningPass(); FunctionPass *createLICMPass(); +//===----------------------------------------------------------------------===// +// +// LoopUnswitch - This pass is a simple loop unswitching pass. +// +FunctionPass *createLoopUnswitchPass(); + + //===----------------------------------------------------------------------===// // // LoopUnroll - This pass is a simple loop unrolling pass.