doxygenize comments in header

llvm-svn: 3480
This commit is contained in:
Chris Lattner 2002-08-22 22:46:20 +00:00
parent f3f98171ad
commit d3b959cecb
1 changed files with 4 additions and 4 deletions

View 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
}