[llvm] [AggressiveInstCombine] Memchr inline (PR #130525)

Yingwei Zheng via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 12 01:23:49 PDT 2025


================
@@ -54,10 +54,9 @@ static cl::opt<unsigned> StrNCmpInlineThreshold(
     cl::desc("The maximum length of a constant string for a builtin string cmp "
              "call eligible for inlining. The default value is 3."));
 
-static cl::opt<unsigned>
-    MemChrInlineThreshold("memchr-inline-threshold", cl::init(3), cl::Hidden,
-                          cl::desc("The maximum length of a constant string to "
-                                   "inline a memchr call."));
+static cl::opt<unsigned> MemChrInlineThreshold(
+    "memchr-inline-threshold", cl::init(6), cl::Hidden,
----------------
dtcxzyw wrote:

What is the purpose of increasing this threshold to 6?


https://github.com/llvm/llvm-project/pull/130525


More information about the llvm-commits mailing list