1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Fix name collision

llvm-svn: 9722
This commit is contained in:
Chris Lattner 2003-11-05 05:55:45 +00:00
parent 9cb20e43cb
commit b5a2959ef2

View File

@ -167,11 +167,11 @@ DSGraph* FunctionModRefInfo::ResolveCallSiteModRefInfo(CallSite CS,
Args.push_back(Result->getNodeForValue(*I));
// Build the call site...
DSCallSite CS(CS, RetVal, F, Args);
DSCallSite NCS(CS, RetVal, F, Args);
// Perform the merging now of the graph for the callee, which will
// come with mod/ref bits set...
Result->mergeInGraph(CS, *F, IPModRefObj.getBUDSGraph(*F),
Result->mergeInGraph(NCS, *F, IPModRefObj.getBUDSGraph(*F),
DSGraph::StripAllocaBit
| DSGraph::DontCloneCallNodes
| DSGraph::DontCloneAuxCallNodes);