[llvm-commits] CVS: llvm/lib/Analysis/IPA/IPModRef.cpp

Chris Lattner lattner at cs.uiuc.edu
Tue Nov 4 23:56:01 PST 2003


Changes in directory llvm/lib/Analysis/IPA:

IPModRef.cpp updated: 1.18 -> 1.19

---
Log message:

Fix name collision


---
Diffs of the changes:  (+2 -2)

Index: llvm/lib/Analysis/IPA/IPModRef.cpp
diff -u llvm/lib/Analysis/IPA/IPModRef.cpp:1.18 llvm/lib/Analysis/IPA/IPModRef.cpp:1.19
--- llvm/lib/Analysis/IPA/IPModRef.cpp:1.18	Mon Oct 20 14:43:08 2003
+++ llvm/lib/Analysis/IPA/IPModRef.cpp	Tue Nov  4 23:55:45 2003
@@ -167,11 +167,11 @@
           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);





More information about the llvm-commits mailing list