aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-22 22:46:20 +0000
committerChris Lattner <sabre@nondot.org>2002-08-22 22:46:20 +0000
commitce325e491cf501d8821f7725be51a46cf97dd144 (patch)
tree47127f4fde76cb884a75e2ed7fd59b8a20ab671b
parent846f5351e9b33739faf13862894f17cae698a9f4 (diff)
doxygenize comments in header
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3480 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Analysis/BasicAliasAnalysis.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Analysis/BasicAliasAnalysis.h b/include/llvm/Analysis/BasicAliasAnalysis.h
index c6b25d6660..b668513117 100644
--- a/include/llvm/Analysis/BasicAliasAnalysis.h
+++ b/include/llvm/Analysis/BasicAliasAnalysis.h
@@ -32,14 +32,14 @@ struct BasicAliasAnalysis : public FunctionPass, public AliasAnalysis {
//
Result alias(const Value *V1, const Value *V2) const;
- // canCallModify - We are not interprocedural, so we do nothing exciting.
- //
+ /// canCallModify - We are not interprocedural, so we do nothing exciting.
+ ///
Result canCallModify(const CallInst &CI, const Value *Ptr) const {
return MayAlias;
}
- // canInvokeModify - We are not interprocedural, so we do nothing exciting.
- //
+ /// canInvokeModify - We are not interprocedural, so we do nothing exciting.
+ ///
Result canInvokeModify(const InvokeInst &I, const Value *Ptr) const {
return MayAlias; // We are not interprocedural
}