[llvm] [MachineCopyPropagation] Recognise and delete no-op moves produced after forwarded uses (PR #129889)

via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 5 06:56:05 PST 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 dd662d8028de628f569a62887378e4ed48d57fb9 03e255ff80a9ed59a47dfa0ebee55fc82e31aeb0 --extensions cpp -- llvm/lib/CodeGen/MachineCopyPropagation.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/llvm/lib/CodeGen/MachineCopyPropagation.cpp b/llvm/lib/CodeGen/MachineCopyPropagation.cpp
index 9bc0f5836f..41df808185 100644
--- a/llvm/lib/CodeGen/MachineCopyPropagation.cpp
+++ b/llvm/lib/CodeGen/MachineCopyPropagation.cpp
@@ -975,7 +975,8 @@ void MachineCopyPropagation::ForwardCopyPropagateBlock(MachineBasicBlock &MBB) {
     // register move (i.e. one where source and destination registers are the
     // same). If so, delete it.
     CopyOperands = isCopyInstr(MI, *TII, UseCopyInstr);
-    if (CopyOperands && CopyOperands->Source->getReg() == CopyOperands->Destination->getReg()) {
+    if (CopyOperands &&
+        CopyOperands->Source->getReg() == CopyOperands->Destination->getReg()) {
       MI.eraseFromParent();
       NumDeletes++;
       Changed = true;

``````````

</details>


https://github.com/llvm/llvm-project/pull/129889


More information about the llvm-commits mailing list