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 | a321b04d60e41d76d4d53a0e7afd4c2ea5c159ad (patch) | |
tree | 4620727d60c32564f138497dd6f58fac91f047ba /lib/Analysis/IPA/IPModRef.cpp | |
parent | 8bc95a176af5ce5380582fc9ed222bcb096f8c2c (diff) |
Adjust for new DSGraph API
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6993 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/IPA/IPModRef.cpp')
-rw-r--r-- | lib/Analysis/IPA/IPModRef.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/IPA/IPModRef.cpp b/lib/Analysis/IPA/IPModRef.cpp index a8aa6c2ec0..86bddc8a8d 100644 --- a/lib/Analysis/IPA/IPModRef.cpp +++ b/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); |