| Index: runtime/vm/intermediate_language_arm64.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language_arm64.cc (revision 35373)
|
| +++ runtime/vm/intermediate_language_arm64.cc (working copy)
|
| @@ -24,9 +24,12 @@
|
| DECLARE_FLAG(int, optimization_counter_threshold);
|
| DECLARE_FLAG(bool, use_osr);
|
|
|
| +// Generic summary for call instructions that have all arguments pushed
|
| +// on the stack and return the result in a fixed register R0.
|
| LocationSummary* Instruction::MakeCallSummary() {
|
| - UNIMPLEMENTED();
|
| - return NULL;
|
| + LocationSummary* result = new LocationSummary(0, 0, LocationSummary::kCall);
|
| + result->set_out(0, Location::RegisterLocation(R0));
|
| + return result;
|
| }
|
|
|
|
|
|
|