mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
VarInfo::UsedBlocks is no longer used. Remove.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36250 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1058,10 +1058,9 @@ bool LiveIntervals::JoinCopy(MachineInstr *CopyMI,
|
||||
for (const unsigned *AS = mri_->getAliasSet(repDstReg); *AS; ++AS)
|
||||
getInterval(*AS).MergeInClobberRanges(SrcInt);
|
||||
} else {
|
||||
// Merge UsedBlocks info if the destination is a virtual register.
|
||||
// Merge use info if the destination is a virtual register.
|
||||
LiveVariables::VarInfo& dVI = lv_->getVarInfo(repDstReg);
|
||||
LiveVariables::VarInfo& sVI = lv_->getVarInfo(repSrcReg);
|
||||
dVI.UsedBlocks |= sVI.UsedBlocks;
|
||||
dVI.NumUses += sVI.NumUses;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user