[llvm] [RISCV][VLOPT] Look through PHI instructions (PR #132236)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 20 08:20:27 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 15c96d6874e8e37e583cf2994b290b9a6869cd30 2513c597fe77945b6c4bbe6c0e570c8ca4458fa5 --extensions cpp -- llvm/lib/Target/RISCV/RISCVVLOptimizer.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/RISCV/RISCVVLOptimizer.cpp b/llvm/lib/Target/RISCV/RISCVVLOptimizer.cpp
index 61f43e2e72..80ae0fd3d9 100644
--- a/llvm/lib/Target/RISCV/RISCVVLOptimizer.cpp
+++ b/llvm/lib/Target/RISCV/RISCVVLOptimizer.cpp
@@ -1342,8 +1342,8 @@ RISCVVLOptimizer::checkUsers(const MachineInstr &MI) const {
if (UserMI.isPHI()) {
LLVM_DEBUG(dbgs() << " Peeking through uses of PHI\n");
- for (auto &PhiUse : MRI->use_operands(UserMI.getOperand(0).getReg()))
- Worklist.insert(&PhiUse);
+ for (auto &PhiUse : MRI->use_operands(UserMI.getOperand(0).getReg()))
+ Worklist.insert(&PhiUse);
continue;
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/132236
More information about the llvm-commits
mailing list