summaryrefslogtreecommitdiff
path: root/compiler/optimizing/bounds_check_elimination.cc
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2017-03-28 00:56:35 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-03-28 00:56:36 +0000
commitd66a932d38d26aa11b242663c0242b1c4db81c03 (patch)
treedf9d98c51d17d0edf81c59db43930ce7d2ed243e /compiler/optimizing/bounds_check_elimination.cc
parentcfc5fcbedc78cff60874d481e9bf7652334c1aa0 (diff)
parentd9911eeca13f609c885e0f6a5ce81af9b6340bfa (diff)
Merge "ART: Clean up field initialization"
Diffstat (limited to 'compiler/optimizing/bounds_check_elimination.cc')
-rw-r--r--compiler/optimizing/bounds_check_elimination.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/bounds_check_elimination.cc b/compiler/optimizing/bounds_check_elimination.cc
index 2ee4db923a..2f318530f1 100644
--- a/compiler/optimizing/bounds_check_elimination.cc
+++ b/compiler/optimizing/bounds_check_elimination.cc
@@ -528,7 +528,8 @@ class BCEVisitor : public HGraphVisitor {
has_dom_based_dynamic_bce_(false),
initial_block_size_(graph->GetBlocks().size()),
side_effects_(side_effects),
- induction_range_(induction_analysis) {}
+ induction_range_(induction_analysis),
+ next_(nullptr) {}
void VisitBasicBlock(HBasicBlock* block) OVERRIDE {
DCHECK(!IsAddedBlock(block));