File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
llvm/lib/Transforms/Vectorize Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -438,10 +438,10 @@ void VPBasicBlock::connectToPredecessors(VPTransformState::CFGState &CFG) {
438438 // Set each forward successor here when it is created, excluding
439439 // backedges. A backward successor is set when the branch is created.
440440 unsigned idx = PredVPSuccessors.front () == this ? 0 : 1 ;
441- assert (
442- (!TermBr-> getSuccessor (idx) ||
443- (isa<VPIRBasicBlock>( this ) && TermBr->getSuccessor (idx) == NewBB)) &&
444- " Trying to reset an existing successor block." );
441+ assert ((TermBr && (!TermBr-> getSuccessor (idx) ||
442+ (isa<VPIRBasicBlock>( this ) &&
443+ TermBr->getSuccessor (idx) == NewBB) )) &&
444+ " Trying to reset an existing successor block." );
445445 TermBr->setSuccessor (idx, NewBB);
446446 }
447447 CFG.DTU .applyUpdates ({{DominatorTree::Insert, PredBB, NewBB}});
You can’t perform that action at this time.
0 commit comments