mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Unbreak msvc.
llvm-svn: 139581
This commit is contained in:
parent
2bfa2824c6
commit
545ef2a09a
@ -47,7 +47,7 @@ void LiveRangeCalc::updateLiveIns(VNInfo *OverrideVNI, SlotIndexes *Indexes) {
|
||||
// The value is live-through, update LiveOut as well. Defer the Domtree
|
||||
// lookup until it is needed.
|
||||
assert(Seen.test(MBB->getNumber()));
|
||||
LiveOut[MBB] = LiveOutPair(VNI, 0);
|
||||
LiveOut[MBB] = LiveOutPair(VNI, (MachineDomTreeNode *)0);
|
||||
}
|
||||
}
|
||||
LiveIn.clear();
|
||||
|
@ -191,7 +191,7 @@ public:
|
||||
/// addLiveInBlock().
|
||||
void setLiveOutValue(MachineBasicBlock *MBB, VNInfo *VNI) {
|
||||
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user