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 /include | |
parent | 228232b2821f8e7f9c0b874ad733414bda183db6 (diff) | |
download | external_llvm-c413330c99a573ef3ffe80a46400b1d3eca2398d.zip external_llvm-c413330c99a573ef3ffe80a46400b1d3eca2398d.tar.gz external_llvm-c413330c99a573ef3ffe80a46400b1d3eca2398d.tar.bz2 |
death to extraneous \n's.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120405 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-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 d4f006f..7531b19 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) {} |