[llvm] [MachineLICM] Only mark live-ins as non-invariant if defined in loop (PR #191755)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 23 00:04:48 PDT 2026
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 origin/main HEAD --extensions cpp -- llvm/lib/CodeGen/MachineLICM.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/CodeGen/MachineLICM.cpp b/llvm/lib/CodeGen/MachineLICM.cpp
index 98248fa7b..ffd0400c1 100644
--- a/llvm/lib/CodeGen/MachineLICM.cpp
+++ b/llvm/lib/CodeGen/MachineLICM.cpp
@@ -585,8 +585,8 @@ void MachineLICMImpl::ProcessMI(MachineInstr *MI, BitVector &RUDefs,
}
/// Set the register units defined by \p MI in \p Defs.
-static void addRegUnitDefs(const MachineInstr &MI, const TargetRegisterInfo *TRI,
- BitVector &Defs) {
+static void addRegUnitDefs(const MachineInstr &MI,
+ const TargetRegisterInfo *TRI, BitVector &Defs) {
for (const MachineOperand &MO : MI.operands()) {
if (!MO.isReg() || !MO.isDef())
continue;
``````````
</details>
https://github.com/llvm/llvm-project/pull/191755
More information about the llvm-commits
mailing list