doxygenize comments in header
authorChris Lattner <sabre@nondot.org>
Thu, 22 Aug 2002 22:46:20 +0000 (22:46 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 22 Aug 2002 22:46:20 +0000 (22:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3480 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/BasicAliasAnalysis.h

index c6b25d66608f344173b8e6559d57b112f6c100a8..b668513117ae686eff89f7d979df59d820bde550 100644 (file)
@@ -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
   }