diff options
author | Sanjay Patel <spatel@rotateright.com> | 2016-01-13 21:36:50 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2016-01-13 21:36:50 +0000 |
commit | 5877a42274a64b0101d2173f27cd090b10ffbe03 (patch) | |
tree | a64ccd633fbf5173d2bb0adf70bd2137378d911a | |
parent | a505be4e5d3ba2e8bab6e54047e8d14b840953c9 (diff) | |
download | bcm5719-llvm-5877a42274a64b0101d2173f27cd090b10ffbe03.tar.gz bcm5719-llvm-5877a42274a64b0101d2173f27cd090b10ffbe03.zip |
don't repeat function names in comments; NFC
llvm-svn: 257675
-rw-r--r-- | llvm/include/llvm/Analysis/AliasAnalysis.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/llvm/include/llvm/Analysis/AliasAnalysis.h b/llvm/include/llvm/Analysis/AliasAnalysis.h index 5cc840a64a6..4bf656a2f2a 100644 --- a/llvm/include/llvm/Analysis/AliasAnalysis.h +++ b/llvm/include/llvm/Analysis/AliasAnalysis.h @@ -951,16 +951,14 @@ ModRefInfo AAResultBase<DerivedT>::getModRefInfo(ImmutableCallSite CS1, return Mask; } -/// isNoAliasCall - Return true if this pointer is returned by a noalias -/// function. +/// Return true if this pointer is returned by a noalias function. bool isNoAliasCall(const Value *V); -/// isNoAliasArgument - Return true if this is an argument with the noalias -/// attribute. +/// Return true if this is an argument with the noalias attribute. bool isNoAliasArgument(const Value *V); -/// isIdentifiedObject - Return true if this pointer refers to a distinct and -/// identifiable object. This returns true for: +/// Return true if this pointer refers to a distinct and identifiable object. +/// This returns true for: /// Global Variables and Functions (but not Global Aliases) /// Allocas /// ByVal and NoAlias Arguments @@ -968,8 +966,8 @@ bool isNoAliasArgument(const Value *V); /// bool isIdentifiedObject(const Value *V); -/// isIdentifiedFunctionLocal - Return true if V is umabigously identified -/// at the function-level. Different IdentifiedFunctionLocals can't alias. +/// Return true if V is umabigously identified at the function-level. +/// Different IdentifiedFunctionLocals can't alias. /// Further, an IdentifiedFunctionLocal can not alias with any function /// arguments other than itself, which is not necessarily true for /// IdentifiedObjects. |