| Index: runtime/vm/runtime_entry_x64.cc
|
| diff --git a/runtime/vm/runtime_entry_x64.cc b/runtime/vm/runtime_entry_x64.cc
|
| index 705eacd9473a4bea66763c644c3abd4c831d50b1..1f519fa7354d50c921f14f17c6374669bcfded72 100644
|
| --- a/runtime/vm/runtime_entry_x64.cc
|
| +++ b/runtime/vm/runtime_entry_x64.cc
|
| @@ -31,7 +31,8 @@ void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const {
|
| ExternalLabel label(GetEntryPoint());
|
| __ LoadExternalLabel(RBX, &label, kNotPatchable, PP);
|
| __ movq(R10, Immediate(argument_count));
|
| - __ Call(&Isolate::Current()->stub_code()->CallToRuntimeLabel(), PP);
|
| + __ Call(Code::Handle(
|
| + Isolate::Current()->stub_code()->CallToRuntimeCode()), PP);
|
| }
|
| }
|
|
|
|
|