summaryrefslogtreecommitdiff
path: root/compiler/optimizing/induction_var_analysis.h
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2016-08-08 19:23:30 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2016-08-08 19:23:30 +0000
commit2f8d19f299274ffe6279044d885d10fa14cf127d (patch)
tree9a8456bfebcfcc04e43568d33d7698895aa64722 /compiler/optimizing/induction_var_analysis.h
parent61cd79bdea19f2ad4d4d1435c58e86406fd20911 (diff)
parent5319d3cca5a9b8e9e3f59421818272b966575172 (diff)
Merge "Implement running user defined list of passes"
Diffstat (limited to 'compiler/optimizing/induction_var_analysis.h')
-rw-r--r--compiler/optimizing/induction_var_analysis.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/induction_var_analysis.h b/compiler/optimizing/induction_var_analysis.h
index 7c74816c26..cd4c830645 100644
--- a/compiler/optimizing/induction_var_analysis.h
+++ b/compiler/optimizing/induction_var_analysis.h
@@ -39,9 +39,9 @@ class HInductionVarAnalysis : public HOptimization {
void Run() OVERRIDE;
- private:
static constexpr const char* kInductionPassName = "induction_var_analysis";
+ private:
struct NodeInfo {
explicit NodeInfo(uint32_t d) : depth(d), done(false) {}
uint32_t depth;