| Index: runtime/vm/flow_graph_compiler_mips.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_compiler_mips.cc (revision 35723)
|
| +++ runtime/vm/flow_graph_compiler_mips.cc (working copy)
|
| @@ -55,7 +55,9 @@
|
| RawDeoptInfo* CompilerDeoptInfo::CreateDeoptInfo(FlowGraphCompiler* compiler,
|
| DeoptInfoBuilder* builder,
|
| const Array& deopt_table) {
|
| - if (deopt_env_ == NULL) return DeoptInfo::null();
|
| + if (deopt_env_ == NULL) {
|
| + return DeoptInfo::null();
|
| + }
|
|
|
| intptr_t stack_height = compiler->StackSize();
|
| AllocateIncomingParametersRecursive(deopt_env_, &stack_height);
|
| @@ -157,7 +159,9 @@
|
| #define __ assem->
|
| __ Comment("Deopt stub for id %" Pd "", deopt_id());
|
| __ Bind(entry_label());
|
| - if (FLAG_trap_on_deoptimization) __ break_(0);
|
| + if (FLAG_trap_on_deoptimization) {
|
| + __ break_(0);
|
| + }
|
|
|
| ASSERT(deopt_env() != NULL);
|
|
|
|
|