| Index: runtime/vm/code_patcher_x64.cc
|
| ===================================================================
|
| --- runtime/vm/code_patcher_x64.cc (revision 15090)
|
| +++ runtime/vm/code_patcher_x64.cc (working copy)
|
| @@ -121,14 +121,9 @@
|
| };
|
|
|
|
|
| -void CodePatcher::GetStaticCallAt(uword return_address,
|
| - Function* function,
|
| - uword* target) {
|
| - ASSERT(function != NULL);
|
| - ASSERT(target != NULL);
|
| +void CodePatcher::GetStaticCallTargetAt(uword return_address) {
|
| StaticCall call(return_address);
|
| - *target = call.target();
|
| - *function = call.function();
|
| + return call.target();
|
| }
|
|
|
|
|
|
|