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() {
559
559
context.borrowee );
560
560
updater.addAvailableValue (mvi->getParentBlock (), mvi);
561
561
562
- SmallVector<Operand *> uses;
562
+ SmallVector<Operand *, 16 > uses;
563
563
for (auto use : context.borrowee ->getUses ()) {
564
564
if (use->getUser () == mvi)
565
565
continue ;
@@ -599,7 +599,7 @@ bool FindCandidates::run(Candidates &candidates) {
599
599
}
600
600
601
601
bool findIntroducerUsage (Context const &context, IntroducerUsage &usage) {
602
- SmallVector<Operand *> useVector;
602
+ SmallVector<Operand *, 16 > useVector;
603
603
if (!findExtendedUsesOfSimpleBorrowedValue (context.borrowedValue ,
604
604
&useVector)) {
605
605
// 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