diff options
| author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-07-16 22:08:37 +0000 |
|---|---|---|
| committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-07-16 22:08:37 +0000 |
| commit | 93d28c14aa545697a8f0c21b3b946ec0abf96b0f (patch) | |
| tree | e8c1165fb47c74f45ed9acd9aae672e3d8c8cb3b | |
| parent | 17f547023902a304243192d3c703956b9aa8064a (diff) | |
| download | bcm5719-llvm-93d28c14aa545697a8f0c21b3b946ec0abf96b0f.tar.gz bcm5719-llvm-93d28c14aa545697a8f0c21b3b946ec0abf96b0f.zip | |
[SCEV][NFC] Use triple-slash (///) for comment.
Makes the comments for proveNoWrapByVaryingStart consistent with the
rest of ScalarEvolution.h
llvm-svn: 242451
| -rw-r--r-- | llvm/include/llvm/Analysis/ScalarEvolution.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/llvm/include/llvm/Analysis/ScalarEvolution.h b/llvm/include/llvm/Analysis/ScalarEvolution.h index d47cab829ce..a4ad5573d80 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<typename ExtendOpTy> bool proveNoWrapByVaryingStart(const SCEV *Start, const SCEV *Step, const Loop *L); |

