[PATCH] D64619: [Loop Peeling] Enable peeling of multiple exits by default

Serguei Katkov via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 19 01:36:35 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL366542: [Loop Peeling] Enable peeling of multiple exits by default. (authored by skatkov, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D64619?vs=209431&id=210770#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D64619/new/

https://reviews.llvm.org/D64619

Files:
  llvm/trunk/lib/Transforms/Utils/LoopUnrollPeel.cpp


Index: llvm/trunk/lib/Transforms/Utils/LoopUnrollPeel.cpp
===================================================================
--- llvm/trunk/lib/Transforms/Utils/LoopUnrollPeel.cpp
+++ llvm/trunk/lib/Transforms/Utils/LoopUnrollPeel.cpp
@@ -62,7 +62,7 @@
     cl::desc("Force a peel count regardless of profiling information."));
 
 static cl::opt<bool> UnrollPeelMultiDeoptExit(
-    "unroll-peel-multi-deopt-exit", cl::init(false), cl::Hidden,
+    "unroll-peel-multi-deopt-exit", cl::init(true), cl::Hidden,
     cl::desc("Allow peeling of loops with multiple deopt exits."));
 
 // Designates that a Phi is estimated to become invariant after an "infinite"


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D64619.210770.patch
Type: text/x-patch
Size: 660 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190719/866fb593/attachment.bin>


More information about the llvm-commits mailing list