diff options
author | Andrew Trick <atrick@apple.com> | 2011-06-28 05:44:06 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2011-06-28 05:44:06 +0000 |
commit | 6d64a04a4d1c2f4f6f8877cc0811a4d4386e518f (patch) | |
tree | 3d171d9e8549198e0def717003e4b80d5ddf6609 | |
parent | dc8e546048db2f7ff5656742b2b26975098a11a0 (diff) |
Cleanup. Fix a stupid variable name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133996 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/ScalarEvolutionExpander.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Analysis/ScalarEvolutionExpander.h b/include/llvm/Analysis/ScalarEvolutionExpander.h index 6879fa6a7d..647a7dcf51 100644 --- a/include/llvm/Analysis/ScalarEvolutionExpander.h +++ b/include/llvm/Analysis/ScalarEvolutionExpander.h @@ -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 |