Don't consider incomplete nodes to be typesafe!

llvm-svn: 8635
This commit is contained in:
Chris Lattner 2003-09-20 21:48:01 +00:00
parent cc81b798e4
commit 71f747ea3d
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}