[PATCH] D13248: [ValueTracking] Lower dom-conditions-dom-blocks and dom-conditions-max-uses thresholds

Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 29 08:02:34 PDT 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL248801: [ValueTracking] Lower dom-conditions-dom-blocks and dom-conditions-max-uses… (authored by igor.laevsky).

Changed prior to commit:
  http://reviews.llvm.org/D13248?vs=35975&id=35979#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D13248

Files:
  llvm/trunk/lib/Analysis/ValueTracking.cpp

Index: llvm/trunk/lib/Analysis/ValueTracking.cpp
===================================================================
--- llvm/trunk/lib/Analysis/ValueTracking.cpp
+++ llvm/trunk/lib/Analysis/ValueTracking.cpp
@@ -58,12 +58,12 @@
 /// conditions?
 static cl::opt<unsigned> DomConditionsMaxDomBlocks("dom-conditions-dom-blocks",
                                                    cl::Hidden,
-                                                   cl::init(20000));
+                                                   cl::init(20));
 
 // Controls the number of uses of the value searched for possible
 // dominating comparisons.
 static cl::opt<unsigned> DomConditionsMaxUses("dom-conditions-max-uses",
-                                              cl::Hidden, cl::init(2000));
+                                              cl::Hidden, cl::init(20));
 
 // If true, don't consider only compares whose only use is a branch.
 static cl::opt<bool> DomConditionsSingleCmpUse("dom-conditions-single-cmp-use",


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D13248.35979.patch
Type: text/x-patch
Size: 1002 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150929/1ae0aa9b/attachment.bin>


More information about the llvm-commits mailing list