File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -559,7 +559,7 @@ void Rewriter::updateSSA() {
559559 context.borrowee );
560560 updater.addAvailableValue (mvi->getParentBlock (), mvi);
561561
562- SmallVector<Operand *> uses;
562+ SmallVector<Operand *, 16 > uses;
563563 for (auto use : context.borrowee ->getUses ()) {
564564 if (use->getUser () == mvi)
565565 continue ;
@@ -599,7 +599,7 @@ bool FindCandidates::run(Candidates &candidates) {
599599}
600600
601601bool findIntroducerUsage (Context const &context, IntroducerUsage &usage) {
602- SmallVector<Operand *> useVector;
602+ SmallVector<Operand *, 16 > useVector;
603603 if (!findExtendedUsesOfSimpleBorrowedValue (context.borrowedValue ,
604604 &useVector)) {
605605 // If the value produced by begin_borrow escapes, don't shrink the borrow
You can’t perform that action at this time.
0 commit comments