forked from OSchip/llvm-project
Unbreak the MSVC 2010 build.
For further information on this particular issue see: http://connect.microsoft.com/VisualStudio/feedback/details/520043/error-converting-from-null-to-a-pointer-type-in-std-pair llvm-svn: 129642
This commit is contained in:
parent
7d03e9be47
commit
beb17d9359
|
@ -816,7 +816,8 @@ bool SplitEditor::transferValues() {
|
||||||
else {
|
else {
|
||||||
// Live-out, but we need updateSSA to tell us the value.
|
// Live-out, but we need updateSSA to tell us the value.
|
||||||
LiveOutSeen.set(MBB->getNumber());
|
LiveOutSeen.set(MBB->getNumber());
|
||||||
LiveOutCache[MBB] = LiveOutPair(0, 0);
|
LiveOutCache[MBB] = LiveOutPair((VNInfo*)0,
|
||||||
|
(MachineDomTreeNode*)0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
BlockStart = BlockEnd;
|
BlockStart = BlockEnd;
|
||||||
|
|
Loading…
Reference in New Issue