[llvm] [Hexagon] Track type locally in HexagonVectorCombine (PR #179066)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Jan 31 12:54:43 PST 2026
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 origin/main HEAD --extensions cpp -- llvm/lib/Target/Hexagon/HexagonVectorCombine.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/Hexagon/HexagonVectorCombine.cpp b/llvm/lib/Target/Hexagon/HexagonVectorCombine.cpp
index 1c41a251f..93cb628be 100644
--- a/llvm/lib/Target/Hexagon/HexagonVectorCombine.cpp
+++ b/llvm/lib/Target/Hexagon/HexagonVectorCombine.cpp
@@ -2244,8 +2244,8 @@ Value *HvxIdioms::processVScatter(Instruction &In) const {
[[maybe_unused]] auto *StoreIndexes =
Builder.CreateStore(cstDataVector, IndexesAlloca);
LLVM_DEBUG(dbgs() << " StoreIndexes : " << *StoreIndexes << "\n");
- CastIndex = Builder.CreateLoad(IndexVectorType, IndexesAlloca,
- "reload_index");
+ CastIndex =
+ Builder.CreateLoad(IndexVectorType, IndexesAlloca, "reload_index");
} else {
if (ElemWidth == 2)
CastIndex = getReinterpretiveCast_i16_to_i32(HVC, Builder, Ctx, Indexes);
``````````
</details>
https://github.com/llvm/llvm-project/pull/179066
More information about the llvm-commits
mailing list