[llvm] Reland "[Transforms] LoopIdiomRecognize recognize strlen and wcslen (#108985)" (PR #131412)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 14 18:33:44 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 5eb557774df637c9e581bd3008cfc6d156a61902 f0091d8e13ebf7f566219b515f9f1fbb6f985726 --extensions h,cpp -- llvm/include/llvm/Transforms/Scalar/LoopIdiomRecognize.h llvm/include/llvm/Transforms/Utils/BuildLibCalls.h llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp llvm/lib/Transforms/Utils/BuildLibCalls.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp b/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
index 7e4cb9dd7a..d7e820aed9 100644
--- a/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
+++ b/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
@@ -1781,7 +1781,7 @@ bool LoopIdiomRecognize::recognizeAndInsertStrLen() {
StrLenFunc = emitStrLen(MaterialzedBase, Builder, *DL, TLI);
} else {
if (DisableLIRP::Wcslen)
- return false;
+ return false;
if (!isLibFuncEmittable(Preheader->getModule(), TLI, LibFunc_wcslen))
return false;
StrLenFunc = emitWcsLen(MaterialzedBase, Builder, *DL, TLI);
``````````
</details>
https://github.com/llvm/llvm-project/pull/131412
More information about the llvm-commits
mailing list