[llvm] [CodeGen] commuteInstruction should update implicit-def (PR #131361)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 08:47:26 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 cpp -- llvm/lib/CodeGen/TargetInstrInfo.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/CodeGen/TargetInstrInfo.cpp b/llvm/lib/CodeGen/TargetInstrInfo.cpp
index 641fd320f..7bccfb9cd 100644
--- a/llvm/lib/CodeGen/TargetInstrInfo.cpp
+++ b/llvm/lib/CodeGen/TargetInstrInfo.cpp
@@ -245,7 +245,7 @@ MachineInstr *TargetInstrInfo::commuteInstructionImpl(MachineInstr &MI,
const TargetRegisterInfo &TRI =
*MI.getMF()->getSubtarget().getRegisterInfo();
Register FromReg = CommutedMI->getOperand(0).getReg();
- CommutedMI->substituteRegister(FromReg, Reg0, /*SubRegIdx*/0, TRI);
+ CommutedMI->substituteRegister(FromReg, Reg0, /*SubRegIdx*/ 0, TRI);
CommutedMI->getOperand(0).setSubReg(SubReg0);
}
CommutedMI->getOperand(Idx2).setReg(Reg1);
``````````
</details>
https://github.com/llvm/llvm-project/pull/131361
More information about the llvm-commits
mailing list