[llvm] [SLP] Make getSameOpcode support interchangeable instructions. (PR #127450)
Alexey Bataev via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 17 04:38:48 PST 2025
================
@@ -2447,42 +2679,44 @@ class BoUpSLP {
ArgSize = isa<IntrinsicInst>(MainOp) ? IntrinsicNumOperands : NumOperands;
OpsVec.resize(NumOperands);
unsigned NumLanes = VL.size();
- for (unsigned OpIdx = 0; OpIdx != NumOperands; ++OpIdx) {
+ for (unsigned OpIdx = 0; OpIdx != NumOperands; ++OpIdx)
----------------
alexey-bataev wrote:
```suggestion
for (unsigned OpIdx : seq<unsigned>(NumOperands))
```
https://github.com/llvm/llvm-project/pull/127450
More information about the llvm-commits
mailing list