[llvm] [VPlan] Refine return types in VPBuilder (NFC) (PR #108858)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 20 03:17:03 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 h -- llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h b/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
index bbf9e75e3..144f35e10 100644
--- a/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
+++ b/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
@@ -190,7 +190,8 @@ public:
new VPInstruction(Opcode, Operands, WrapFlags, DL, Name));
}
- VPInstruction *createNot(VPValue *Operand, DebugLoc DL = DebugLoc::getUnknown(),
+ VPInstruction *createNot(VPValue *Operand,
+ DebugLoc DL = DebugLoc::getUnknown(),
const Twine &Name = "") {
return createInstruction(VPInstruction::Not, {Operand}, DL, Name);
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/108858
More information about the llvm-commits
mailing list