llvm-svn: 4697
This commit is contained in:
Chris Lattner 2002-11-11 22:23:56 +00:00
parent f56a5282d2
commit 3b303e5ab8

View File

@ -158,9 +158,8 @@ DSGraph *FunctionModRefInfo::ResolveCallSiteModRefInfo(CallInst &CI,
return 0;
}
// Remove trivial dead nodes... don't aggressively prune graph though... the
// graph is short lived anyway.
Result->removeTriviallyDeadNodes(false);
// Remove dead nodes...
Result->removeDeadNodes();
// Step #4: Return the clone + the mapping (by ref)
return Result;