1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

The callee is not correct, and confuses the TD pass. Null it out.

llvm-svn: 4259
This commit is contained in:
Chris Lattner 2002-10-22 15:58:46 +00:00
parent 58781838b7
commit 61b32b3ab0

View File

@ -146,6 +146,7 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) {
std::vector<DSCallSite> &CallSitesForFunc = CallSites[&FI];
CallSitesForFunc.push_back(Call);
CallSitesForFunc.back().setResolvingCaller(&F);
CallSitesForFunc.back().setCallee(0);
// Clone the callee's graph into the current graph, keeping
// track of where scalars in the old graph _used_ to point,