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 | 2f2c3351e127b95d62b6c5f8f3af851e89553082 (patch) | |
| tree | ce195b438f18f73c5a1b6a36ecaa37f952274030 /llvm | |
| parent | 1d7926502f8ef3679697d6be6a191479efffae08 (diff) | |
| download | bcm5719-llvm-2f2c3351e127b95d62b6c5f8f3af851e89553082.tar.gz bcm5719-llvm-2f2c3351e127b95d62b6c5f8f3af851e89553082.zip  | |
fit in 80 cols
llvm-svn: 123085
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Analysis/AliasAnalysis.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Analysis/AliasAnalysis.h b/llvm/include/llvm/Analysis/AliasAnalysis.h index 2375a07bfbd..71a5982c7d3 100644 --- a/llvm/include/llvm/Analysis/AliasAnalysis.h +++ b/llvm/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));    }  | 

