forked from OSchip/llvm-project
Don't consider incomplete nodes to be typesafe!
llvm-svn: 8635
This commit is contained in:
parent
cc81b798e4
commit
71f747ea3d
|
@ -104,7 +104,7 @@ DSNode *DSGraphStats::getNodeForValue(Value *V) {
|
|||
|
||||
bool DSGraphStats::isNodeForValueCollapsed(Value *V) {
|
||||
if (DSNode *N = getNodeForValue(V))
|
||||
return N->isNodeCompletelyFolded();
|
||||
return N->isNodeCompletelyFolded() || N->isIncomplete();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue