diff options
author | Chris Lattner <sabre@nondot.org> | 2011-01-08 20:53:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-01-08 20:53:41 +0000 |
commit | 2feee6454d4c9cbb3a104b0f593d31a91a14d15a (patch) | |
tree | 755447d49231d04fee5e0d5ec349d6a36c09eaac | |
parent | 355f5778aa2f8de3febc0ae533fedde010b354c1 (diff) | |
download | external_llvm-2feee6454d4c9cbb3a104b0f593d31a91a14d15a.tar.gz external_llvm-2feee6454d4c9cbb3a104b0f593d31a91a14d15a.tar.bz2 external_llvm-2feee6454d4c9cbb3a104b0f593d31a91a14d15a.zip |
fit in 80 cols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123085 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/AliasAnalysis.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/AliasAnalysis.h b/include/llvm/Analysis/AliasAnalysis.h index 2375a07bfb..71a5982c7d 100644 --- a/include/llvm/Analysis/AliasAnalysis.h +++ b/include/llvm/Analysis/AliasAnalysis.h @@ -402,7 +402,7 @@ public: ModRefResult getModRefInfo(const StoreInst *S, const Location &Loc); /// getModRefInfo (for stores) - A convenience wrapper. - ModRefResult getModRefInfo(const StoreInst *S, const Value *P, uint64_t Size) { + ModRefResult getModRefInfo(const StoreInst *S, const Value *P, uint64_t Size){ return getModRefInfo(S, Location(P, Size)); } @@ -411,7 +411,7 @@ public: ModRefResult getModRefInfo(const VAArgInst* I, const Location &Loc); /// getModRefInfo (for va_args) - A convenience wrapper. - ModRefResult getModRefInfo(const VAArgInst* I, const Value* P, uint64_t Size) { + ModRefResult getModRefInfo(const VAArgInst* I, const Value* P, uint64_t Size){ return getModRefInfo(I, Location(P, Size)); } |