| Index: runtime/vm/flow_graph_compiler_mips.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_compiler_mips.cc (revision 26635)
|
| +++ runtime/vm/flow_graph_compiler_mips.cc (working copy)
|
| @@ -1161,15 +1161,9 @@
|
| // S4: arguments descriptor array.
|
| void FlowGraphCompiler::CompileGraph() {
|
| InitCompiler();
|
| - if (TryIntrinsify()) {
|
| - // Although this intrinsified code will never be patched, it must satisfy
|
| - // CodePatcher::CodeIsPatchable, which verifies that this code has a minimum
|
| - // code size.
|
| - __ break_(0);
|
| - __ Branch(&StubCode::FixCallersTargetLabel());
|
| - return;
|
| - }
|
|
|
| + TryIntrinsify();
|
| +
|
| EmitFrameEntry();
|
|
|
| const Function& function = parsed_function().function();
|
|
|