From: Sanjoy Das Date: Thu, 16 Jul 2015 22:08:37 +0000 (+0000) Subject: [SCEV][NFC] Use triple-slash (///) for comment. X-Git-Tag: studio-1.4~2274 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=93d28c14aa545697a8f0c21b3b946ec0abf96b0f;p=platform%2Fupstream%2Fllvm.git [SCEV][NFC] Use triple-slash (///) for comment. Makes the comments for proveNoWrapByVaryingStart consistent with the rest of ScalarEvolution.h llvm-svn: 242451 --- diff --git a/llvm/include/llvm/Analysis/ScalarEvolution.h b/llvm/include/llvm/Analysis/ScalarEvolution.h index d47cab82..a4ad557 100644 --- a/llvm/include/llvm/Analysis/ScalarEvolution.h +++ b/llvm/include/llvm/Analysis/ScalarEvolution.h @@ -569,11 +569,12 @@ namespace llvm { /// pointer. bool checkValidity(const SCEV *S) const; - // Return true if `ExtendOpTy`({`Start`,+,`Step`}) can be proved to be equal - // to {`ExtendOpTy`(`Start`),+,`ExtendOpTy`(`Step`)}. This is equivalent to - // proving no signed (resp. unsigned) wrap in {`Start`,+,`Step`} if - // `ExtendOpTy` is `SCEVSignExtendExpr` (resp. `SCEVZeroExtendExpr`). - // + /// Return true if `ExtendOpTy`({`Start`,+,`Step`}) can be proved to be + /// equal to {`ExtendOpTy`(`Start`),+,`ExtendOpTy`(`Step`)}. This is + /// equivalent to proving no signed (resp. unsigned) wrap in + /// {`Start`,+,`Step`} if `ExtendOpTy` is `SCEVSignExtendExpr` + /// (resp. `SCEVZeroExtendExpr`). + /// template bool proveNoWrapByVaryingStart(const SCEV *Start, const SCEV *Step, const Loop *L);