| Index: runtime/vm/runtime_entry_x64.cc
|
| diff --git a/runtime/vm/runtime_entry_x64.cc b/runtime/vm/runtime_entry_x64.cc
|
| index 0e78100c30d24fd5d8268ccd517d178a477c25bc..868868473b6abf3f6936fac7c87233dd1c3c9545 100644
|
| --- a/runtime/vm/runtime_entry_x64.cc
|
| +++ b/runtime/vm/runtime_entry_x64.cc
|
| @@ -24,7 +24,7 @@ void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const {
|
| if (is_leaf()) {
|
| ASSERT(argument_count == this->argument_count());
|
| ExternalLabel label(GetEntryPoint());
|
| - __ call(&label);
|
| + __ CallCFunction(&label);
|
| } else {
|
| // Argument count is not checked here, but in the runtime entry for a more
|
| // informative error message.
|
|
|