mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-15 07:39:31 +00:00
Fix resolution of indirect function calls... whoops
llvm-svn: 5576
This commit is contained in:
parent
7aae29d426
commit
148d67f088
@ -799,7 +799,7 @@ void DSGraph::markIncompleteNodes(unsigned Flags) {
|
||||
// Mark all global nodes as incomplete...
|
||||
if ((Flags & DSGraph::IgnoreGlobals) == 0)
|
||||
for (unsigned i = 0, e = Nodes.size(); i != e; ++i)
|
||||
if (Nodes[i]->NodeType & DSNode::GlobalNode)
|
||||
if (Nodes[i]->NodeType & DSNode::GlobalNode && Nodes[i]->getNumLinks())
|
||||
markIncompleteNode(Nodes[i]);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user