doxygenize comments in header

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3480 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-08-22 22:46:20 +00:00
parent 846f5351e9
commit ce325e491c

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
}