From 832f61117d69019376c4aabedd4de3831279e288 Mon Sep 17 00:00:00 2001 From: Cameron Zwarich Date: Mon, 3 Jan 2011 00:25:16 +0000 Subject: Add a new loop-instsimplify pass, with the intention of replacing the instance of instcombine that is currently in the middle of the loop pass pipeline. This commit only checks in the pass; it will hopefully be enabled by default later. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122719 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/Scalar.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/Transforms/Scalar/Scalar.cpp') diff --git a/lib/Transforms/Scalar/Scalar.cpp b/lib/Transforms/Scalar/Scalar.cpp index 27c11186d6..2b13bcacc1 100644 --- a/lib/Transforms/Scalar/Scalar.cpp +++ b/lib/Transforms/Scalar/Scalar.cpp @@ -41,6 +41,7 @@ void llvm::initializeScalarOpts(PassRegistry &Registry) { initializeJumpThreadingPass(Registry); initializeLICMPass(Registry); initializeLoopDeletionPass(Registry); + initializeLoopInstSimplifyPass(Registry); initializeLoopRotatePass(Registry); initializeLoopStrengthReducePass(Registry); initializeLoopUnrollPass(Registry); -- cgit v1.2.3