Cleanup. Fix a stupid variable name.
authorAndrew Trick <atrick@apple.com>
Tue, 28 Jun 2011 05:44:06 +0000 (05:44 +0000)
committerAndrew Trick <atrick@apple.com>
Tue, 28 Jun 2011 05:44:06 +0000 (05:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133996 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/ScalarEvolutionExpander.h

index 6879fa6a7d6a55dce07a6a6c014ec155340bea4e..647a7dcf5186b1dc6036b01e7835130794838ac4 100644 (file)
@@ -32,7 +32,7 @@ namespace llvm {
     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 @@ namespace llvm {
 
   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