mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Unbreak msvc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139581 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -47,7 +47,7 @@ void LiveRangeCalc::updateLiveIns(VNInfo *OverrideVNI, SlotIndexes *Indexes) {
|
|||||||
// The value is live-through, update LiveOut as well. Defer the Domtree
|
// The value is live-through, update LiveOut as well. Defer the Domtree
|
||||||
// lookup until it is needed.
|
// lookup until it is needed.
|
||||||
assert(Seen.test(MBB->getNumber()));
|
assert(Seen.test(MBB->getNumber()));
|
||||||
LiveOut[MBB] = LiveOutPair(VNI, 0);
|
LiveOut[MBB] = LiveOutPair(VNI, (MachineDomTreeNode *)0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
LiveIn.clear();
|
LiveIn.clear();
|
||||||
|
@ -191,7 +191,7 @@ public:
|
|||||||
/// addLiveInBlock().
|
/// addLiveInBlock().
|
||||||
void setLiveOutValue(MachineBasicBlock *MBB, VNInfo *VNI) {
|
void setLiveOutValue(MachineBasicBlock *MBB, VNInfo *VNI) {
|
||||||
Seen.set(MBB->getNumber());
|
Seen.set(MBB->getNumber());
|
||||||
LiveOut[MBB] = LiveOutPair(VNI, 0);
|
LiveOut[MBB] = LiveOutPair(VNI, (MachineDomTreeNode *)0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// addLiveInBlock - Add a block with an unknown live-in value. This
|
/// addLiveInBlock - Add a block with an unknown live-in value. This
|
||||||
|
Reference in New Issue
Block a user