forked from OSchip/llvm-project
remove unused argument from LiveRanges::join()
llvm-svn: 190169
This commit is contained in:
parent
c0ad7bfa62
commit
90e0d3c03a
|
@ -370,8 +370,7 @@ namespace llvm {
|
|||
void join(LiveInterval &Other,
|
||||
const int *ValNoAssignments,
|
||||
const int *RHSValNoAssignments,
|
||||
SmallVectorImpl<VNInfo *> &NewVNInfo,
|
||||
MachineRegisterInfo *MRI);
|
||||
SmallVectorImpl<VNInfo *> &NewVNInfo);
|
||||
|
||||
/// True iff this live range is a single segment that lies between the
|
||||
/// specified boundaries, exclusively. Vregs live across a backedge are not
|
||||
|
|
|
@ -415,8 +415,7 @@ void LiveInterval::removeValNo(VNInfo *ValNo) {
|
|||
void LiveInterval::join(LiveInterval &Other,
|
||||
const int *LHSValNoAssignments,
|
||||
const int *RHSValNoAssignments,
|
||||
SmallVectorImpl<VNInfo *> &NewVNInfo,
|
||||
MachineRegisterInfo *MRI) {
|
||||
SmallVectorImpl<VNInfo *> &NewVNInfo) {
|
||||
verify();
|
||||
|
||||
// Determine if any of our live range values are mapped. This is uncommon, so
|
||||
|
|
|
@ -1999,8 +1999,7 @@ bool RegisterCoalescer::joinVirtRegs(CoalescerPair &CP) {
|
|||
LIS->shrinkToUses(&LIS->getInterval(ShrinkRegs.pop_back_val()));
|
||||
|
||||
// Join RHS into LHS.
|
||||
LHS.join(RHS, LHSVals.getAssignments(), RHSVals.getAssignments(), NewVNInfo,
|
||||
MRI);
|
||||
LHS.join(RHS, LHSVals.getAssignments(), RHSVals.getAssignments(), NewVNInfo);
|
||||
|
||||
// Kill flags are going to be wrong if the live ranges were overlapping.
|
||||
// Eventually, we should simply clear all kill flags when computing live
|
||||
|
|
Loading…
Reference in New Issue