mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-24 13:18:17 +00:00
Adjust the sizes for a few SmallVectors to reflect their usage.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64381 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1053,7 +1053,7 @@ bool LocalSpiller::PrepForUnfoldOpti(MachineBasicBlock &MBB,
|
||||
NewMIs.clear();
|
||||
int Idx = NewMI->findRegisterUseOperandIdx(VirtReg, false);
|
||||
assert(Idx != -1);
|
||||
SmallVector<unsigned, 2> Ops;
|
||||
SmallVector<unsigned, 1> Ops;
|
||||
Ops.push_back(Idx);
|
||||
MachineInstr *FoldedMI = TII->foldMemoryOperand(MF, NewMI, Ops, SS);
|
||||
if (FoldedMI) {
|
||||
@@ -1124,7 +1124,7 @@ bool LocalSpiller::CommuteToFoldReload(MachineBasicBlock &MBB,
|
||||
MachineInstr *CommutedMI = TII->commuteInstruction(DefMI, true);
|
||||
if (!CommutedMI)
|
||||
return false;
|
||||
SmallVector<unsigned, 2> Ops;
|
||||
SmallVector<unsigned, 1> Ops;
|
||||
Ops.push_back(NewDstIdx);
|
||||
MachineInstr *FoldedMI = TII->foldMemoryOperand(MF, CommutedMI, Ops, SS);
|
||||
// Not needed since foldMemoryOperand returns new MI.
|
||||
|
||||
Reference in New Issue
Block a user