[llvm-commits] [llvm] r133996 - /llvm/trunk/include/llvm/Analysis/ScalarEvolutionExpander.h

Andrew Trick atrick at apple.com
Mon Jun 27 22:44:06 PDT 2011


Author: atrick
Date: Tue Jun 28 00:44:06 2011
New Revision: 133996

URL: http://llvm.org/viewvc/llvm-project?rev=133996&view=rev
Log:
Cleanup. Fix a stupid variable name.

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

Modified: llvm/trunk/include/llvm/Analysis/ScalarEvolutionExpander.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/ScalarEvolutionExpander.h?rev=133996&r1=133995&r2=133996&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/ScalarEvolutionExpander.h (original)
+++ llvm/trunk/include/llvm/Analysis/ScalarEvolutionExpander.h Tue Jun 28 00:44:06 2011
@@ -32,7 +32,7 @@
     ScalarEvolution &SE;
 
     // New instructions receive a name to identifies them with the current pass.
-    const char* Label;
+    const char* IVName;
 
     std::map<std::pair<const SCEV *, Instruction *>, AssertingVH<Value> >
       InsertedExpressions;
@@ -71,8 +71,8 @@
 
   public:
     /// SCEVExpander - Construct a SCEVExpander in "canonical" mode.
-    explicit SCEVExpander(ScalarEvolution &se, const char *label)
-      : SE(se), Label(label), IVIncInsertLoop(0), CanonicalMode(true),
+    explicit SCEVExpander(ScalarEvolution &se, const char *name)
+      : SE(se), IVName(name), IVIncInsertLoop(0), CanonicalMode(true),
         Builder(se.getContext(), TargetFolder(se.TD)) {}
 
     /// clear - Erase the contents of the InsertedExpressions map so that users





More information about the llvm-commits mailing list