[llvm] [SLP] SLP's copyable elements based upon Main/Alt operations. (PR #124242)
Alexey Bataev via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 04:06:44 PDT 2025
================
@@ -2488,8 +2627,16 @@ class BoUpSLP {
}
bool IsInverseOperation = !isCommutative(cast<Instruction>(VL[Lane]));
bool APO = (OpIdx == 0) ? false : IsInverseOperation;
- OpsVec[OpIdx][Lane] = {cast<Instruction>(VL[Lane])->getOperand(OpIdx),
- APO, false};
+ Instruction *Inst = cast<Instruction>(VL[Lane]);
----------------
alexey-bataev wrote:
```suggestion
auto *Inst = cast<Instruction>(VL[Lane]);
```
https://github.com/llvm/llvm-project/pull/124242
More information about the llvm-commits
mailing list