llvm-svn: 4697
This commit is contained in:
Chris Lattner 2002-11-11 22:23:56 +00:00
parent eb10d4cbce
commit 1aeca4d0e6
1 changed files with 2 additions and 3 deletions

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;