[llvm] [NFC] Add assertions for Src and Dst vec types in VecCombine folding (PR #134432)
Shilei Tian via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 4 16:46:48 PDT 2025
================
@@ -2052,6 +2052,9 @@ bool VectorCombine::foldShuffleOfSelects(Instruction &I) {
auto *SrcVecTy = dyn_cast<FixedVectorType>(T1->getType());
auto *DstVecTy = dyn_cast<FixedVectorType>(I.getType());
+ assert(SrcVecTy && DstVecTy &&
----------------
shiltian wrote:
If they don't expect to be `nullptr`, a `cast` would be more appropriate.
https://github.com/llvm/llvm-project/pull/134432
More information about the llvm-commits
mailing list