| Index: runtime/vm/flow_graph_compiler.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_compiler.cc (revision 38066)
|
| +++ runtime/vm/flow_graph_compiler.cc (working copy)
|
| @@ -731,9 +731,9 @@
|
| function.HasOptionalParameters() ? 0 : function.num_fixed_parameters();
|
| DeoptInfoBuilder builder(isolate(), incoming_arg_count);
|
|
|
| - const Array& array =
|
| - Array::Handle(Array::New(DeoptTable::SizeFor(deopt_infos_.length()),
|
| - Heap::kOld));
|
| + const Array& array = Array::Handle(Array::NewOrEmpty(
|
| + DeoptTable::SizeFor(deopt_infos_.length()),
|
| + Heap::kOld));
|
| Smi& offset = Smi::Handle();
|
| DeoptInfo& info = DeoptInfo::Handle();
|
| Smi& reason = Smi::Handle();
|
|
|