diff options
author | Chris Lattner <sabre@nondot.org> | 2010-11-30 07:20:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-11-30 07:20:51 +0000 |
commit | c413330c99a573ef3ffe80a46400b1d3eca2398d (patch) | |
tree | a3fb84e4a6b333121297dadd75df747391dc9714 | |
parent | 228232b2821f8e7f9c0b874ad733414bda183db6 (diff) |
death to extraneous \n's.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120405 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/AliasAnalysis.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Analysis/AliasAnalysis.h b/include/llvm/Analysis/AliasAnalysis.h index d4f006fd11..7531b19c5b 100644 --- a/include/llvm/Analysis/AliasAnalysis.h +++ b/include/llvm/Analysis/AliasAnalysis.h @@ -108,8 +108,7 @@ public: /// the location, or null if there is no known unique tag. const MDNode *TBAATag; - explicit Location(const Value *P = 0, - uint64_t S = UnknownSize, + explicit Location(const Value *P = 0, uint64_t S = UnknownSize, const MDNode *N = 0) : Ptr(P), Size(S), TBAATag(N) {} |