| Index: runtime/vm/intermediate_language_x64.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language_x64.cc (revision 40629)
|
| +++ runtime/vm/intermediate_language_x64.cc (working copy)
|
| @@ -1990,9 +1990,12 @@
|
| }
|
|
|
| __ Bind(&slow_path);
|
| - StubCode* stub_code = compiler->isolate()->stub_code();
|
| + Isolate* isolate = compiler->isolate();
|
| + const Code& stub = Code::Handle(
|
| + isolate, isolate->stub_code()->GetAllocateArrayStub());
|
| + const ExternalLabel label(stub.EntryPoint());
|
| compiler->GenerateCall(token_pos(),
|
| - &stub_code->AllocateArrayLabel(),
|
| + &label,
|
| RawPcDescriptors::kOther,
|
| locs());
|
| __ Bind(&done);
|
|
|