ARM/GlobalISel: Don't store a MachineInstrBuilder reference

This is basically a pointer anyway
This commit is contained in:
Matt Arsenault 2021-05-05 17:22:10 -04:00
parent 6bbfa0fd40
commit 6e88539ab1
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ struct ARMOutgoingValueHandler : public CallLowering::OutgoingValueHandler {
return false;
}
MachineInstrBuilder &MIB;
MachineInstrBuilder MIB;
uint64_t StackSize = 0;
};