[llvm] [ObjCARC] Add variations of intrinsics that do not touch reference counts (PR #94919)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 22 11:05:32 PDT 2024
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 bee2654300a8f524e05dd4cad41411d597246ac0 1e5c890d1fd22e347e500028a62238a20e857bef --extensions cpp -- llvm/lib/Analysis/ObjCARCInstKind.cpp llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index b53697f932..4710a44509 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -4241,8 +4241,8 @@ SelectionDAG::computeOverflowForSignedAdd(SDValue N0, SDValue N1) const {
// cannot overflow.
if (ComputeNumSignBits(N0) > 1 && ComputeNumSignBits(N1) > 1)
return OFK_Never;
-
- // smulhi + any value never overflow
+
+ // smulhi + any value never overflow
KnownBits N1Known = computeKnownBits(N1);
if (N0.getOpcode() == ISD::SMUL_LOHI)
return OFK_Never;
@@ -4250,8 +4250,8 @@ SelectionDAG::computeOverflowForSignedAdd(SDValue N0, SDValue N1) const {
KnownBits N0Known = computeKnownBits(N0);
if (N1.getOpcode() == ISD::SMUL_LOHI)
return OFK_Never;
-
- // Fallback to ConstantRange::signedAddMayOverflow handling.
+
+ // Fallback to ConstantRange::signedAddMayOverflow handling.
ConstantRange N0Range = ConstantRange::fromKnownBits(N0Known, false);
ConstantRange N1Range = ConstantRange::fromKnownBits(N1Known, false);
return mapOverflowResult(N0Range.signedAddMayOverflow(N1Range));
``````````
</details>
https://github.com/llvm/llvm-project/pull/94919
More information about the llvm-commits
mailing list