[llvm] [SLP] NFC. Use InstructionsState::valid if users just want to know whether VL has same opcode. (PR #120217)
Han-Kuan Chen via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 30 08:51:54 PST 2024
================
@@ -8144,9 +8147,8 @@ void BoUpSLP::buildTree_rec(ArrayRef<Value *> VL, unsigned Depth,
}
// Don't handle scalable vectors
- if (S.getOpcode() == Instruction::ExtractElement &&
- isa<ScalableVectorType>(
- cast<ExtractElementInst>(S.getMainOp())->getVectorOperandType())) {
+ if (auto *EE = dyn_cast_if_present<ExtractElementInst>(S.getMainOp());
----------------
HanKuanChen wrote:
OK. See https://github.com/llvm/llvm-project/pull/120217/commits/1c16e5cc54bcbd24eb51f2609f3a098b27d80b96
https://github.com/llvm/llvm-project/pull/120217
More information about the llvm-commits
mailing list