diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-10-21 12:51:16 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-10-21 12:51:16 +0000 |
commit | f3e9ddbf77ba01e1a67735b57c86d10aa8568b9f (patch) | |
tree | 110d693c1b07038d99d27b8586a325dbc56555ea | |
parent | 32b06235da7fa1dce35dbca96585321bd948f927 (diff) | |
download | bcm5719-llvm-f3e9ddbf77ba01e1a67735b57c86d10aa8568b9f.tar.gz bcm5719-llvm-f3e9ddbf77ba01e1a67735b57c86d10aa8568b9f.zip |
Wdocumentation fix
llvm-svn: 284822
-rw-r--r-- | llvm/include/llvm/Analysis/ScalarEvolution.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/Analysis/ScalarEvolution.h b/llvm/include/llvm/Analysis/ScalarEvolution.h index 7284f3ea87a..c71419924e7 100644 --- a/llvm/include/llvm/Analysis/ScalarEvolution.h +++ b/llvm/include/llvm/Analysis/ScalarEvolution.h @@ -548,9 +548,9 @@ private: /// pair of exact and max expressions that are eventually summarized in /// ExitNotTakenInfo and BackedgeTakenInfo. struct ExitLimit { - const SCEV *ExactNotTaken; //< The exit is not taken exactly this many times - const SCEV *MaxNotTaken; //< The exit is not taken at most this many times - bool MaxOrZero; //< Not taken either exactly MaxNotTaken or zero times + const SCEV *ExactNotTaken; // The exit is not taken exactly this many times + const SCEV *MaxNotTaken; // The exit is not taken at most this many times + bool MaxOrZero; // Not taken either exactly MaxNotTaken or zero times /// A set of predicate guards for this ExitLimit. The result is only valid /// if all of the predicates in \c Predicates evaluate to 'true' at |