[PATCH] D92486: Set option default for enabling memory ssa for new pass manager loop sink pass to true.

Jamie Schmeiser via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 15 06:57:35 PST 2021


This revision was automatically updated to reflect the committed changes.
Closed by commit rG17d0fb7f574e: Set option default for enabling memory ssa for new pass manager loop sink pass… (authored by jamieschmeiser).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D92486

Files:
  llvm/lib/Transforms/Scalar/LoopSink.cpp


Index: llvm/lib/Transforms/Scalar/LoopSink.cpp
===================================================================
--- llvm/lib/Transforms/Scalar/LoopSink.cpp
+++ llvm/lib/Transforms/Scalar/LoopSink.cpp
@@ -70,7 +70,7 @@
     cl::desc("Do not sink instructions that have too many uses."));
 
 static cl::opt<bool> EnableMSSAInLoopSink(
-    "enable-mssa-in-loop-sink", cl::Hidden, cl::init(false),
+    "enable-mssa-in-loop-sink", cl::Hidden, cl::init(true),
     cl::desc("Enable MemorySSA for LoopSink in new pass manager"));
 
 static cl::opt<bool> EnableMSSAInLegacyLoopSink(


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D92486.316940.patch
Type: text/x-patch
Size: 580 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210115/fcf3c5b0/attachment.bin>


More information about the llvm-commits mailing list