diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-30 03:14:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-30 03:14:54 +0000 |
commit | 151576413e9d408a604a5aa46544fe5a67b3efe3 (patch) | |
tree | 7dae01b1a2d82f955e751599532cfbb0d0534061 /llvm/lib | |
parent | 6e69c28229805ae13c24b2fd83f197bddd514473 (diff) | |
download | bcm5719-llvm-151576413e9d408a604a5aa46544fe5a67b3efe3.tar.gz bcm5719-llvm-151576413e9d408a604a5aa46544fe5a67b3efe3.zip |
Adjust for new DSGraph API
llvm-svn: 6993
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Analysis/IPA/IPModRef.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/IPA/IPModRef.cpp b/llvm/lib/Analysis/IPA/IPModRef.cpp index a8aa6c2ec0f..86bddc8a8d9 100644 --- a/llvm/lib/Analysis/IPA/IPModRef.cpp +++ b/llvm/lib/Analysis/IPA/IPModRef.cpp @@ -166,7 +166,7 @@ DSGraph* FunctionModRefInfo::ResolveCallSiteModRefInfo(CallInst &CI, // Perform the merging now of the graph for the callee, which will // come with mod/ref bits set... - Result->mergeInGraph(CS, IPModRefObj.getBUDSGraph(*F), + Result->mergeInGraph(CS, *F, IPModRefObj.getBUDSGraph(*F), DSGraph::StripAllocaBit | DSGraph::DontCloneCallNodes | DSGraph::DontCloneAuxCallNodes); |