aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/IPA
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-11-05 05:55:45 +0000
committerChris Lattner <sabre@nondot.org>2003-11-05 05:55:45 +0000
commit02713453686eb7c00c6d2c34108a199c29f03f7c (patch)
treeda5779b0c405e6e3a064e8c942c3fbd01a3839fb /lib/Analysis/IPA
parentd1bcf59c9df22076d3e910fb7640707a5806ff48 (diff)
downloadexternal_llvm-02713453686eb7c00c6d2c34108a199c29f03f7c.zip
external_llvm-02713453686eb7c00c6d2c34108a199c29f03f7c.tar.gz
external_llvm-02713453686eb7c00c6d2c34108a199c29f03f7c.tar.bz2
Fix name collision
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9722 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/IPA')
-rw-r--r--lib/Analysis/IPA/IPModRef.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/IPA/IPModRef.cpp b/lib/Analysis/IPA/IPModRef.cpp
index 754b86b..64b60d4 100644
--- a/lib/Analysis/IPA/IPModRef.cpp
+++ b/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);