Fix name collision
authorChris Lattner <sabre@nondot.org>
Wed, 5 Nov 2003 05:55:45 +0000 (05:55 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 5 Nov 2003 05:55:45 +0000 (05:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9722 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/IPModRef.cpp
lib/Analysis/IPA/IPModRef.cpp

index 754b86b74b7b10755ed63261823f5ed6de8fda05..64b60d48ba29f2a410e8471313a7bb085a1c98b2 100644 (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);
index 754b86b74b7b10755ed63261823f5ed6de8fda05..64b60d48ba29f2a410e8471313a7bb085a1c98b2 100644 (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);