[llvm] [PowerPC] $carry should be added to successors liveins if still alive after expanding ISEL (PR #127376)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 15 21:51:46 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 c17df0af23c941cd4fc97851ea51c91eee7c49e4 d556765b095edc873113c6431cabe0db717b7b42 --extensions cpp,h -- llvm/include/llvm/CodeGen/LivePhysRegs.h llvm/lib/CodeGen/LivePhysRegs.cpp llvm/lib/Target/PowerPC/PPCISelLowering.cpp llvm/lib/Target/X86/X86ISelLowering.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
index c3baac2aa3..73d4aff264 100644
--- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
+++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
@@ -13297,7 +13297,7 @@ PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr &MI,
DebugLoc dl = MI.getDebugLoc();
F->insert(It, copy0MBB);
F->insert(It, sinkMBB);
- if (isPhysRegLiveAfter(PPC::CARRY , MI.getIterator())) {
+ if (isPhysRegLiveAfter(PPC::CARRY, MI.getIterator())) {
copy0MBB->addLiveIn(PPC::CARRY);
sinkMBB->addLiveIn(PPC::CARRY);
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/127376
More information about the llvm-commits
mailing list