[llvm] [X86] Check if there is stack access in the spilled FP/BP range (PR #106035)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Aug 25 21:31:14 PDT 2024
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 10407be542aeb2b59477b167bbba3716538dc722 32a2a8a47d30acfb5c4225ce028d34e7707c41b1 --extensions h,cpp -- llvm/lib/Target/X86/X86FrameLowering.cpp llvm/lib/Target/X86/X86FrameLowering.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/X86/X86FrameLowering.cpp b/llvm/lib/Target/X86/X86FrameLowering.cpp
index e4a29ae4e3..43a3219f78 100644
--- a/llvm/lib/Target/X86/X86FrameLowering.cpp
+++ b/llvm/lib/Target/X86/X86FrameLowering.cpp
@@ -4430,8 +4430,8 @@ static bool isInvoke(const MachineInstr &MI, bool InsideEHLabels) {
return true;
}
-/// Given the live range of FP or BP (DefMI, KillMI), check if there is any interfered
-/// stack access in the range, usually generated by register spill.
+/// Given the live range of FP or BP (DefMI, KillMI), check if there is any
+/// interfered stack access in the range, usually generated by register spill.
void X86FrameLowering::checkInterferedAccess(
MachineFunction &MF, MachineBasicBlock::reverse_iterator DefMI,
MachineBasicBlock::reverse_iterator KillMI, bool SpillFP,
``````````
</details>
https://github.com/llvm/llvm-project/pull/106035
More information about the llvm-commits
mailing list