]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
fdr: remove clamp on confirm size
authorJustin Viiret <justin.viiret@intel.com>
Mon, 23 Jan 2017 05:20:09 +0000 (16:20 +1100)
committerMatthew Barr <matthew.barr@intel.com>
Wed, 26 Apr 2017 04:41:30 +0000 (14:41 +1000)
src/fdr/fdr_confirm_compile.cpp

index 4aa2df0d439a6fb5ac9278d5ceee5f0e95940dfa..30f682d1d85adf6c0c73f6f779ee584db8675d92 100644 (file)
@@ -166,7 +166,7 @@ getFDRConfirm(const vector<hwlmLiteral> &lits, bool applyOneCharOpt,
     if (make_small) {
         nBits = min(10U, lg2(lits.size()) + 1);
     } else {
-        nBits = min(13U, lg2(lits.size()) + 4);
+        nBits = lg2(lits.size() + 4);
     }
 
     CONF_TYPE mult = (CONF_TYPE)0x0b4e0ef37bc32127ULL;