diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-05 05:55:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-05 05:55:45 +0000 |
commit | 5f6463c04161ed10d5d9a68bc6935dda282ad53e (patch) | |
tree | 77460274963734507ab872c7986f4c84bfa79b28 /llvm/lib | |
parent | 21c7894ea040f5db386b777eb9860d94d1fe3b37 (diff) | |
download | bcm5719-llvm-5f6463c04161ed10d5d9a68bc6935dda282ad53e.tar.gz bcm5719-llvm-5f6463c04161ed10d5d9a68bc6935dda282ad53e.zip |
Fix name collision
llvm-svn: 9722
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Analysis/IPA/IPModRef.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/IPA/IPModRef.cpp b/llvm/lib/Analysis/IPA/IPModRef.cpp index 754b86b74b7..64b60d48ba2 100644 --- a/llvm/lib/Analysis/IPA/IPModRef.cpp +++ b/llvm/lib/Analysis/IPA/IPModRef.cpp @@ -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); |