From 92df1747f60ccfe9e3500850f04159b1642fa17a Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Wed, 13 Jan 2016 17:43:35 +0000 Subject: [PATCH] don't repeat names in comments ; NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@257643 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/ScopedNoAliasAA.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/Analysis/ScopedNoAliasAA.cpp b/lib/Analysis/ScopedNoAliasAA.cpp index 486f3a58328..ee79f881f6c 100644 --- a/lib/Analysis/ScopedNoAliasAA.cpp +++ b/lib/Analysis/ScopedNoAliasAA.cpp @@ -51,9 +51,9 @@ static cl::opt 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; -- 2.11.0