diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-02 00:26:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-02 00:26:32 +0000 |
commit | 364e6e82fd6c405c237efd7a20e94f2274eab6c5 (patch) | |
tree | 5f7b642134250924ad55bd6350b4b6e6f326353a /llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp | |
parent | a7b0d4eb0829f0fc1ac995739a6aede74271176a (diff) | |
download | bcm5719-llvm-364e6e82fd6c405c237efd7a20e94f2274eab6c5.tar.gz bcm5719-llvm-364e6e82fd6c405c237efd7a20e94f2274eab6c5.zip |
Oops, this was not meant to be checked in
llvm-svn: 4489
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp index 08c86c5e124..be5d725b776 100644 --- a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -139,12 +139,11 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) { // Record that the original DSCallSite was a call site of FI. // This may or may not have been known when the DSCallSite was // originally created. -#if 1 /// FIXME: Reenable std::vector<DSCallSite> &CallSitesForFunc = CallSites[&FI]; CallSitesForFunc.push_back(Call); CallSitesForFunc.back().setResolvingCaller(&F); CallSitesForFunc.back().setCallee(0); -#endif + // Clone the callee's graph into the current graph, keeping // track of where scalars in the old graph _used_ to point, // and of the new nodes matching nodes of the old graph. |