Skip to content

Commit 526605d

Browse files
committed
Cleanup. Fix a stupid variable name.
llvm-svn: 133996
1 parent 154d78a commit 526605d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/include/llvm/Analysis/ScalarEvolutionExpander.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace llvm {
3232
ScalarEvolution &SE;
3333

3434
// New instructions receive a name to identifies them with the current pass.
35-
const char* Label;
35+
const char* IVName;
3636

3737
std::map<std::pair<const SCEV *, Instruction *>, AssertingVH<Value> >
3838
InsertedExpressions;
@@ -71,8 +71,8 @@ namespace llvm {
7171

7272
public:
7373
/// SCEVExpander - Construct a SCEVExpander in "canonical" mode.
74-
explicit SCEVExpander(ScalarEvolution &se, const char *label)
75-
: SE(se), Label(label), IVIncInsertLoop(0), CanonicalMode(true),
74+
explicit SCEVExpander(ScalarEvolution &se, const char *name)
75+
: SE(se), IVName(name), IVIncInsertLoop(0), CanonicalMode(true),
7676
Builder(se.getContext(), TargetFolder(se.TD)) {}
7777

7878
/// clear - Erase the contents of the InsertedExpressions map so that users

0 commit comments

Comments
 (0)