[llvm] [NFC][indvars] Remove unused code in WidenIV::widenLoopCompare (PR #73506)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 27 03:43:12 PST 2023
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 f21a70f9fe21539f70212ba2346c3db54f4d9980 c9808bf052d7ae13c3a8fb7678bdd2573a00deb9 -- llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp b/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
index a1d09fd73c..47ecc89055 100644
--- a/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
+++ b/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
@@ -1379,10 +1379,10 @@ WidenIV::getExtendedOperandRecurrence(WidenIV::NarrowIVDefUse DU) {
ExtendKind ExtKind = getExtendKind(DU.NarrowDef);
if (ExtKind == ExtendKind::Sign && OBO->hasNoSignedWrap())
ExtendOperExpr = SE->getSignExtendExpr(
- SE->getSCEV(DU.NarrowUse->getOperand(ExtendOperIdx)), WideType);
+ SE->getSCEV(DU.NarrowUse->getOperand(ExtendOperIdx)), WideType);
else if (ExtKind == ExtendKind::Zero && OBO->hasNoUnsignedWrap())
ExtendOperExpr = SE->getZeroExtendExpr(
- SE->getSCEV(DU.NarrowUse->getOperand(ExtendOperIdx)), WideType);
+ SE->getSCEV(DU.NarrowUse->getOperand(ExtendOperIdx)), WideType);
else
return {nullptr, ExtendKind::Unknown};
``````````
</details>
https://github.com/llvm/llvm-project/pull/73506
More information about the llvm-commits
mailing list