| Index: runtime/vm/flow_graph_compiler_mips.cc
|
| diff --git a/runtime/vm/flow_graph_compiler_mips.cc b/runtime/vm/flow_graph_compiler_mips.cc
|
| index 76db1c3f42ed92c8796d13c4f329fc9176932c21..096280907a3bdb32a4cee485de5a18019ad8050d 100644
|
| --- a/runtime/vm/flow_graph_compiler_mips.cc
|
| +++ b/runtime/vm/flow_graph_compiler_mips.cc
|
| @@ -1451,6 +1451,10 @@ void FlowGraphCompiler::EmitEqualityRegRegCompare(Register left,
|
| // This function must be in sync with FlowGraphCompiler::RecordSafepoint and
|
| // FlowGraphCompiler::SlowPathEnvironmentFor.
|
| void FlowGraphCompiler::SaveLiveRegisters(LocationSummary* locs) {
|
| +#if defined(DEBUG)
|
| + locs->CheckWritableInputs();
|
| +#endif
|
| +
|
| __ TraceSimMsg("SaveLiveRegisters");
|
| // TODO(vegorov): consider saving only caller save (volatile) registers.
|
| const intptr_t fpu_regs_count= locs->live_registers()->FpuRegisterCount();
|
|
|