diff options
author | Dan Gohman <gohman@apple.com> | 2010-08-03 23:08:10 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-08-03 23:08:10 +0000 |
commit | a41af344c2964573318a77e2b43eafd4d3804003 (patch) | |
tree | bc02408b2365ce0f4098b208410b450048a7b474 /include/llvm/Analysis | |
parent | 7cf8fc7a45373aab97ce58130087b8b5db064f54 (diff) | |
download | external_llvm-a41af344c2964573318a77e2b43eafd4d3804003.zip external_llvm-a41af344c2964573318a77e2b43eafd4d3804003.tar.gz external_llvm-a41af344c2964573318a77e2b43eafd4d3804003.tar.bz2 |
Remove PointerAccessInfo, which nothing was using.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110167 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r-- | include/llvm/Analysis/AliasAnalysis.h | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/include/llvm/Analysis/AliasAnalysis.h b/include/llvm/Analysis/AliasAnalysis.h index 178049f..b0ac80b 100644 --- a/include/llvm/Analysis/AliasAnalysis.h +++ b/include/llvm/Analysis/AliasAnalysis.h @@ -164,27 +164,12 @@ public: UnknownModRefBehavior }; - /// PointerAccessInfo - This struct is used to return results for pointers, - /// globals, and the return value of a function. - struct PointerAccessInfo { - /// V - The value this record corresponds to. This may be an Argument for - /// the function, a GlobalVariable, or null, corresponding to the return - /// value for the function. - Value *V; - - /// ModRefInfo - Whether the pointer is loaded or stored to/from. - /// - ModRefResult ModRefInfo; - }; - /// getModRefBehavior - Return the behavior when calling the given call site. - virtual ModRefBehavior getModRefBehavior(ImmutableCallSite CS, - std::vector<PointerAccessInfo> *Info = 0); + virtual ModRefBehavior getModRefBehavior(ImmutableCallSite CS); /// getModRefBehavior - Return the behavior when calling the given function. /// For use when the call site is not known. - virtual ModRefBehavior getModRefBehavior(const Function *F, - std::vector<PointerAccessInfo> *Info = 0); + virtual ModRefBehavior getModRefBehavior(const Function *F); /// getIntrinsicModRefBehavior - Return the modref behavior of the intrinsic /// with the given id. |