| Index: runtime/vm/native_entry_test.cc
|
| ===================================================================
|
| --- runtime/vm/native_entry_test.cc (revision 18603)
|
| +++ runtime/vm/native_entry_test.cc (working copy)
|
| @@ -94,9 +94,9 @@
|
| DartFrameIterator iterator;
|
| iterator.NextFrame(); // Skip native call.
|
| StackFrame* static_caller_frame = iterator.NextFrame();
|
| + const Code& code = Code::Handle(static_caller_frame->LookupDartCode());
|
| uword target_address =
|
| - CodePatcher::GetStaticCallTargetAt(static_caller_frame->pc());
|
| - const Code& code = Code::Handle(static_caller_frame->LookupDartCode());
|
| + CodePatcher::GetStaticCallTargetAt(static_caller_frame->pc(), code);
|
| const Function& target_function =
|
| Function::Handle(code.GetStaticCallTargetFunctionAt(
|
| static_caller_frame->pc()));
|
|
|