diff options
author | Sanjay Patel <spatel@rotateright.com> | 2016-01-13 17:43:35 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2016-01-13 17:43:35 +0000 |
commit | c5d29aa7c4cb5fe4c5b424c88f5ab6de5a8c4ad2 (patch) | |
tree | 7779fa1df0bc98b8ab78deb4241cd2e286fbb9a4 | |
parent | d60388a9852f4a1b40b863a4736e8c9b87c478b0 (diff) | |
download | bcm5719-llvm-c5d29aa7c4cb5fe4c5b424c88f5ab6de5a8c4ad2.tar.gz bcm5719-llvm-c5d29aa7c4cb5fe4c5b424c88f5ab6de5a8c4ad2.zip |
don't repeat names in comments ; NFC
llvm-svn: 257643
-rw-r--r-- | llvm/lib/Analysis/ScopedNoAliasAA.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Analysis/ScopedNoAliasAA.cpp b/llvm/lib/Analysis/ScopedNoAliasAA.cpp index 486f3a58328..ee79f881f6c 100644 --- a/llvm/lib/Analysis/ScopedNoAliasAA.cpp +++ b/llvm/lib/Analysis/ScopedNoAliasAA.cpp @@ -51,9 +51,9 @@ static cl::opt<bool> EnableScopedNoAlias("enable-scoped-noalias", cl::init(true)); namespace { -/// AliasScopeNode - This is a simple wrapper around an MDNode which provides -/// a higher-level interface by hiding the details of how alias analysis -/// information is encoded in its operands. +/// This is a simple wrapper around an MDNode which provides a higher-level +/// interface by hiding the details of how alias analysis information is encoded +/// in its operands. class AliasScopeNode { const MDNode *Node; @@ -61,10 +61,10 @@ public: AliasScopeNode() : Node(nullptr) {} explicit AliasScopeNode(const MDNode *N) : Node(N) {} - /// getNode - Get the MDNode for this AliasScopeNode. + /// Get the MDNode for this AliasScopeNode. const MDNode *getNode() const { return Node; } - /// getDomain - Get the MDNode for this AliasScopeNode's domain. + /// Get the MDNode for this AliasScopeNode's domain. const MDNode *getDomain() const { if (Node->getNumOperands() < 2) return nullptr; |