[PATCH] D46581: [DAGCombine] Change store merge candidates check cut off to 1024

Amara Emerson via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed May 9 08:57:07 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL331888: [DAGCombine] Change store merge candidates check cut off to 1024. (authored by aemerson, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D46581?vs=145690&id=145935#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D46581

Files:
  llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp


Index: llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
===================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -13384,7 +13384,7 @@
 
   SmallPtrSet<const SDNode *, 16> Visited;
   SmallVector<const SDNode *, 8> Worklist;
-  unsigned int Max = 8192;
+  unsigned int Max = 1024;
   // Search Ops of store candidates.
   for (unsigned i = 0; i < NumStores; ++i) {
     SDNode *n = StoreNodes[i].MemNode;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D46581.145935.patch
Type: text/x-patch
Size: 533 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180509/f3279934/attachment.bin>


More information about the llvm-commits mailing list