Skip to content

Commit d8ce19a

Browse files
committed
Build fix after bbde6b
1 parent 54d0061 commit d8ce19a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/CodeGen/MachineFrameInfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,7 @@ class MachineFrameInfo {
839839
static SmallVector<MachineBasicBlock *> constructSaveRestorePoints(
840840
ArrayRef<MachineBasicBlock *> SRPoints,
841841
const DenseMap<MachineBasicBlock *, MachineBasicBlock *> &BBMap) {
842-
SmallVector<MachineBasicBlock *, 4> Pts;
842+
SmallVector<MachineBasicBlock *> Pts;
843843
for (auto &Src : SRPoints)
844844
Pts.push_back(BBMap.find(Src)->second);
845845
return Pts;

0 commit comments

Comments
 (0)