From 8ffe2e2156121f8a3edaacea1cf91fc2128f49a9 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Wed, 14 May 2008 18:04:30 +0000 Subject: [PATCH] Recover nestedloop regression reported by nightly tester. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51110 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/opt/opt.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index 301a0598fdd..e3ea59e26bf 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -280,6 +280,8 @@ void AddStandardCompilePasses(PassManager &PM) { addPass(PM, createLICMPass()); // Hoist loop invariants addPass(PM, createLoopUnswitchPass()); // Unswitch loops. addPass(PM, createLoopIndexSplitPass()); // Index split loops. + // FIXME : Removing instcombine causes nestedloop regression. + addPass(PM, createInstructionCombiningPass()); addPass(PM, createIndVarSimplifyPass()); // Canonicalize indvars addPass(PM, createLoopDeletionPass()); // Delete dead loops addPass(PM, createLoopUnrollPass()); // Unroll small loops -- 2.34.1