mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 02:31:26 +00:00
Loosen our check here. Local regalloc only cares that the reg is used and def'd by the same instruction, but about the details of
the relationship. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53367 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
03b5ee7762
commit
eb580ee133
@ -592,9 +592,7 @@ void RALocal::ComputeLocalLiveness(MachineBasicBlock& MBB) {
|
||||
|
||||
// If this is a two address instr, then we don't mark the def
|
||||
// as killing the use.
|
||||
if (last->second.first == I &&
|
||||
I->getDesc().getOperandConstraint(last->second.second,
|
||||
TOI::TIED_TO) == (signed)i) {
|
||||
if (last->second.first == I) {
|
||||
LastUseDef[MO.getReg()] = std::make_pair(I, i);
|
||||
continue;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user