[llvm] r261395 - [SCEV] Don't spell `SCEV *` variables as `Scev`; NFC

Sanjoy Das via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 19 17:59:15 PST 2016


Author: sanjoy
Date: Fri Feb 19 19:59:15 2016
New Revision: 261395

URL: http://llvm.org/viewvc/llvm-project?rev=261395&view=rev
Log:
[SCEV] Don't spell `SCEV *` variables as `Scev`; NFC

I missed a spot in rL261393.

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=261395&r1=261394&r2=261395&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/ScalarEvolution.h (original)
+++ llvm/trunk/include/llvm/Analysis/ScalarEvolution.h Fri Feb 19 19:59:15 2016
@@ -1378,12 +1378,11 @@ namespace llvm {
                      SCEVWrapPredicate::IncrementWrapFlags AddedFlags);
 
     /// Re-writes the SCEV according to the Predicates in \p Preds.
-    const SCEV *rewriteUsingPredicate(const SCEV *Scev, const Loop *L,
+    const SCEV *rewriteUsingPredicate(const SCEV *S, const Loop *L,
                                       SCEVUnionPredicate &A);
-    /// Tries to convert the \p Scev expression to an AddRec expression,
+    /// Tries to convert the \p S expression to an AddRec expression,
     /// adding additional predicates to \p Preds as required.
-    const SCEV *convertSCEVToAddRecWithPredicates(const SCEV *Scev,
-                                                  const Loop *L,
+    const SCEV *convertSCEVToAddRecWithPredicates(const SCEV *S, const Loop *L,
                                                   SCEVUnionPredicate &Preds);
 
   private:




More information about the llvm-commits mailing list