mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-10 06:25:01 +00:00
Fix bug
llvm-svn: 4697
This commit is contained in:
parent
f56a5282d2
commit
3b303e5ab8
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user