diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-20 04:29:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-20 04:29:54 +0000 |
commit | 571c62a008a814eae402cdeee63bf10f5fa7f05c (patch) | |
tree | 4c5d65049492dcdc69bd97f3b3408bd49d7e606f /llvm/lib/Analysis/DataStructure/TopDownClosure.cpp | |
parent | b1cabb6541b1a7446ed4558f21e2f75615b91b87 (diff) | |
download | bcm5719-llvm-571c62a008a814eae402cdeee63bf10f5fa7f05c.tar.gz bcm5719-llvm-571c62a008a814eae402cdeee63bf10f5fa7f05c.zip |
This call is always a noop, remove it.
llvm-svn: 20714
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/TopDownClosure.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/TopDownClosure.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp b/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp index fb367a8e68a..4d6313683e0 100644 --- a/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp +++ b/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp @@ -185,15 +185,6 @@ void TDDataStructures::inlineGraphIntoCallees(DSGraph &Graph) { break; } - // Now fold in the necessary globals from the GlobalsGraph. A global G - // must be folded in if it exists in the current graph (i.e., is not dead) - // and it was not inlined from any of my callers. If it was inlined from - // a caller, it would have been fully consistent with the GlobalsGraph - // in the caller so folding in is not necessary. Otherwise, this node came - // solely from this function's BU graph and so has to be made consistent. - // - Graph.updateFromGlobalGraph(); - // Recompute the Incomplete markers. Depends on whether args are complete unsigned Flags = HasIncompleteArgs ? DSGraph::MarkFormalArgs : DSGraph::IgnoreFormalArgs; |