AMDGPU/GlobalISel: Remove unnecessary override

This is the same as the default implementation
This commit is contained in:
Matt Arsenault 2021-05-04 22:29:30 -04:00
parent 23ae35e858
commit 8fc4eb9e73
1 changed files with 0 additions and 7 deletions

View File

@ -78,13 +78,6 @@ struct AMDGPUOutgoingValueHandler : public CallLowering::OutgoingValueHandler {
MIRBuilder.buildCopy(PhysReg, ExtReg);
MIB.addUse(PhysReg, RegState::Implicit);
}
bool assignArg(unsigned ValNo, EVT OrigVT, MVT ValVT, MVT LocVT,
CCValAssign::LocInfo LocInfo,
const CallLowering::ArgInfo &Info, ISD::ArgFlagsTy Flags,
CCState &State) override {
return AssignFn(ValNo, ValVT, LocVT, LocInfo, Flags, State);
}
};
struct AMDGPUIncomingArgHandler : public CallLowering::IncomingValueHandler {