[llvm] [SLP][REVEC] Ignore UserTreeIndex if it is empty. (PR #131993)
Alexey Bataev via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 07:58:37 PDT 2025
================
@@ -6449,9 +6449,10 @@ void BoUpSLP::reorderTopToBottom() {
assert(SLPReVec && "Only supported by REVEC.");
// ShuffleVectorInst does not do reorderOperands (and it should not
// because ShuffleVectorInst supports only a limited set of
- // patterns). Only do reorderNodeWithReuses if all of the users are
- // not ShuffleVectorInst.
- if (isa<ShuffleVectorInst>(TE->UserTreeIndex.UserTE->getMainOp()))
+ // patterns). Only do reorderNodeWithReuses if the user is not
+ // ShuffleVectorInst.
+ if (TE->UserTreeIndex &&
+ isa<ShuffleVectorInst>(TE->UserTreeIndex.UserTE->getMainOp()))
----------------
alexey-bataev wrote:
Some entries might have Gather parents
https://github.com/llvm/llvm-project/pull/131993
More information about the llvm-commits
mailing list