[llvm] [SPIRV] Mark maybe unused extractSubvector variable (PR #116117)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 13 15:00:37 PST 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 e8c07f7458285c6fb2eddff5b7914519de10474d 872d2b45e71814ce9eafe78fcce3160a88baffbb --extensions cpp -- llvm/lib/Target/SPIRV/SPIRVInstructionSelector.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/SPIRV/SPIRVInstructionSelector.cpp b/llvm/lib/Target/SPIRV/SPIRVInstructionSelector.cpp
index 4e6fce9608..b5dce14cd0 100644
--- a/llvm/lib/Target/SPIRV/SPIRVInstructionSelector.cpp
+++ b/llvm/lib/Target/SPIRV/SPIRVInstructionSelector.cpp
@@ -2941,7 +2941,8 @@ void SPIRVInstructionSelector::extractSubvector(
Register &ResVReg, const SPIRVType *ResType, Register &ReadReg,
MachineInstr &InsertionPoint) const {
SPIRVType *InputType = GR.getResultType(ReadReg);
- [[maybe_unused]] uint64_t InputSize = GR.getScalarOrVectorComponentCount(InputType);
+ [[maybe_unused]] uint64_t InputSize =
+ GR.getScalarOrVectorComponentCount(InputType);
uint64_t ResultSize = GR.getScalarOrVectorComponentCount(ResType);
assert(InputSize > 1 && "The input must be a vector.");
assert(ResultSize > 1 && "The result must be a vector.");
``````````
</details>
https://github.com/llvm/llvm-project/pull/116117
More information about the llvm-commits
mailing list