[llvm] r284822 - Wdocumentation fix

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 21 05:51:17 PDT 2016


Author: rksimon
Date: Fri Oct 21 07:51:16 2016
New Revision: 284822

URL: http://llvm.org/viewvc/llvm-project?rev=284822&view=rev
Log:
Wdocumentation fix

Modified:
    llvm/trunk/include/llvm/Analysis/ScalarEvolution.h

Modified: llvm/trunk/include/llvm/Analysis/ScalarEvolution.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/ScalarEvolution.h?rev=284822&r1=284821&r2=284822&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/ScalarEvolution.h (original)
+++ llvm/trunk/include/llvm/Analysis/ScalarEvolution.h Fri Oct 21 07:51:16 2016
@@ -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




More information about the llvm-commits mailing list