Index: runtime/vm/runtime_entry_x64.cc |
diff --git a/runtime/vm/runtime_entry_x64.cc b/runtime/vm/runtime_entry_x64.cc |
index 7d0779580bf6a49cd8cdbe658fb6462edd5205f4..be400a3aa813defc425c4147f0daaf0d40356791 100644 |
--- a/runtime/vm/runtime_entry_x64.cc |
+++ b/runtime/vm/runtime_entry_x64.cc |
@@ -30,7 +30,8 @@ void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const { |
// informative error message. |
__ movq(RBX, Immediate(GetEntryPoint())); |
__ movq(R10, Immediate(argument_count)); |
- __ Call(&Isolate::Current()->stub_code()->CallToRuntimeLabel(), PP); |
+ __ Call(&Isolate::Current()->stub_code()->CallToRuntimeLabel(), PP, |
+ false); // No fixup. Stub is at a fixed place in the object pool. |
} |
} |