diff options
author | 2017-03-28 00:56:35 +0000 | |
---|---|---|
committer | 2017-03-28 00:56:36 +0000 | |
commit | d66a932d38d26aa11b242663c0242b1c4db81c03 (patch) | |
tree | df9d98c51d17d0edf81c59db43930ce7d2ed243e /compiler/optimizing/bounds_check_elimination.cc | |
parent | cfc5fcbedc78cff60874d481e9bf7652334c1aa0 (diff) | |
parent | d9911eeca13f609c885e0f6a5ce81af9b6340bfa (diff) |
Merge "ART: Clean up field initialization"
Diffstat (limited to 'compiler/optimizing/bounds_check_elimination.cc')
-rw-r--r-- | compiler/optimizing/bounds_check_elimination.cc | 3 |
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)); |