[llvm-branch-commits] [llvm] RuntimeLibcalls: Add entries for objc runtime calls (PR #147920)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Jul 10 01:30:18 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 HEAD~1 HEAD --extensions cpp -- llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp b/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
index 925ce5dd7..8de2c4858 100644
--- a/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
+++ b/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
@@ -564,7 +564,8 @@ bool PreISelIntrinsicLowering::lowerIntrinsics(Module &M) const {
Changed |= lowerObjCCall(F, RTLIB::objc_storeWeak);
break;
case Intrinsic::objc_unsafeClaimAutoreleasedReturnValue:
- Changed |= lowerObjCCall(F, RTLIB::objc_unsafeClaimAutoreleasedReturnValue);
+ Changed |=
+ lowerObjCCall(F, RTLIB::objc_unsafeClaimAutoreleasedReturnValue);
break;
case Intrinsic::objc_retainedObject:
Changed |= lowerObjCCall(F, RTLIB::objc_retainedObject);
``````````
</details>
https://github.com/llvm/llvm-project/pull/147920
More information about the llvm-branch-commits
mailing list