| Index: runtime/vm/flow_graph_range_analysis.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_range_analysis.cc (revision 40526)
|
| +++ runtime/vm/flow_graph_range_analysis.cc (working copy)
|
| @@ -578,7 +578,7 @@
|
| }
|
|
|
| // Initialize bitvector for quick filtering of int values.
|
| - BitVector* set = new(I) BitVector(flow_graph_->current_ssa_temp_index());
|
| + BitVector* set = new(I) BitVector(I, flow_graph_->current_ssa_temp_index());
|
| for (intptr_t i = 0; i < values_.length(); i++) {
|
| set->Add(values_[i]->ssa_temp_index());
|
| }
|
| @@ -746,7 +746,7 @@
|
| isolate_ = flow_graph_->isolate();
|
| ASSERT(isolate_ != NULL);
|
| selected_uint32_defs_ =
|
| - new(I) BitVector(flow_graph_->current_ssa_temp_index());
|
| + new(I) BitVector(I, flow_graph_->current_ssa_temp_index());
|
| }
|
|
|
|
|
|
|