| Index: runtime/vm/flow_graph_compiler.cc
|
| diff --git a/runtime/vm/flow_graph_compiler.cc b/runtime/vm/flow_graph_compiler.cc
|
| index 87fee91f629a4e1cd4772d485efa1ea162c70e2f..079b8288a4a4dfeec91e4c7aa91df964e7669820 100644
|
| --- a/runtime/vm/flow_graph_compiler.cc
|
| +++ b/runtime/vm/flow_graph_compiler.cc
|
| @@ -907,6 +907,12 @@ FieldAddress FlowGraphCompiler::ElementAddressForIntIndex(intptr_t cid,
|
| ASSERT(Utils::IsInt(31, disp));
|
| return FieldAddress(array, disp);
|
| }
|
| + case kFloat32ArrayCid: {
|
| + const intptr_t disp =
|
| + offset * kFloatSize + Float32Array::data_offset();
|
| + ASSERT(Utils::IsInt(31, disp));
|
| + return FieldAddress(array, disp);
|
| + }
|
| case kFloat64ArrayCid: {
|
| const intptr_t disp =
|
| offset * kDoubleSize + Float64Array::data_offset();
|
|
|