diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-08-14 01:43:46 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-08-14 01:43:46 +0000 |
commit | 45cf0bf117416c1782462ae31c6f7b2a544e9b1f (patch) | |
tree | 855f825a187877096c589e7df3bf1d4ddd48dd24 /llvm/lib/Analysis/LibCallAliasAnalysis.cpp | |
parent | 4ac50b08e3c7fc4c4aaabae6bf5c13484cd9e512 (diff) | |
download | bcm5719-llvm-45cf0bf117416c1782462ae31c6f7b2a544e9b1f.tar.gz bcm5719-llvm-45cf0bf117416c1782462ae31c6f7b2a544e9b1f.zip |
[PM/AA] Remove the function names and class names from doxygen comments
and generally clean up their formatting.
llvm-svn: 245002
Diffstat (limited to 'llvm/lib/Analysis/LibCallAliasAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/LibCallAliasAnalysis.cpp | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/llvm/lib/Analysis/LibCallAliasAnalysis.cpp b/llvm/lib/Analysis/LibCallAliasAnalysis.cpp index 8d693dd19b4..0c58e7ca4dc 100644 --- a/llvm/lib/Analysis/LibCallAliasAnalysis.cpp +++ b/llvm/lib/Analysis/LibCallAliasAnalysis.cpp @@ -17,7 +17,6 @@ #include "llvm/Pass.h" using namespace llvm; -// Register this pass... char LibCallAliasAnalysis::ID = 0; INITIALIZE_AG_PASS(LibCallAliasAnalysis, AliasAnalysis, "libcall-aa", "LibCall Alias Analysis", false, true, false) @@ -39,9 +38,9 @@ bool LibCallAliasAnalysis::runOnFunction(Function &F) { return false; } -/// AnalyzeLibCallDetails - Given a call to a function with the specified -/// LibCallFunctionInfo, see if we can improve the mod/ref footprint of the call -/// vs the specified pointer/size. +/// Given a call to a function with the specified LibCallFunctionInfo, see if +/// we can improve the mod/ref footprint of the call vs the specified +/// pointer/size. ModRefInfo LibCallAliasAnalysis::AnalyzeLibCallDetails(const LibCallFunctionInfo *FI, ImmutableCallSite CS, @@ -117,9 +116,8 @@ LibCallAliasAnalysis::AnalyzeLibCallDetails(const LibCallFunctionInfo *FI, return MRInfo; } -// getModRefInfo - Check to see if the specified callsite can clobber the -// specified memory object. -// +/// Check to see if the specified callsite can clobber the specified memory +/// object. ModRefInfo LibCallAliasAnalysis::getModRefInfo(ImmutableCallSite CS, const MemoryLocation &Loc) { ModRefInfo MRInfo = MRI_ModRef; |