Index: runtime/vm/flow_graph_compiler_x64.cc |
=================================================================== |
--- runtime/vm/flow_graph_compiler_x64.cc (revision 30084) |
+++ runtime/vm/flow_graph_compiler_x64.cc (working copy) |
@@ -977,7 +977,7 @@ |
ICData::New(function, Symbols::Call(), Object::empty_array(), |
Isolate::kNoDeoptId, kNumArgsChecked)); |
__ LoadObject(RBX, ic_data, PP); |
- __ LeaveFrameWithPP(); // The arguments are still on the stack. |
+ __ LeaveDartFrame(); // The arguments are still on the stack. |
__ jmp(&StubCode::CallNoSuchMethodFunctionLabel()); |
// The noSuchMethod call may return to the caller, but not here. |
__ int3(); |
@@ -1176,7 +1176,7 @@ |
ICData::New(function, name, Object::empty_array(), |
Isolate::kNoDeoptId, kNumArgsChecked)); |
__ LoadObject(RBX, ic_data, PP); |
- __ LeaveFrameWithPP(); // The arguments are still on the stack. |
+ __ LeaveDartFrame(); // The arguments are still on the stack. |
__ jmp(&StubCode::CallNoSuchMethodFunctionLabel()); |
// The noSuchMethod call may return to the caller, but not here. |
__ int3(); |