| Index: runtime/vm/flow_graph_compiler_x64.cc
|
| diff --git a/runtime/vm/flow_graph_compiler_x64.cc b/runtime/vm/flow_graph_compiler_x64.cc
|
| index 67223b5dbb0edc298a8da24cbc50a35bd6750d46..ab0223d19a5ec3f65661375b63177fbf165dadec 100644
|
| --- a/runtime/vm/flow_graph_compiler_x64.cc
|
| +++ b/runtime/vm/flow_graph_compiler_x64.cc
|
| @@ -1135,19 +1135,6 @@ void FlowGraphCompiler::CompileGraph() {
|
| __ int3();
|
| ASSERT(assembler()->constant_pool_allowed());
|
| GenerateDeferredCode();
|
| - // Emit function patching code. This will be swapped with the first 13 bytes
|
| - // at entry point.
|
| -
|
| - BeginCodeSourceRange();
|
| - if (is_optimizing() && !FLAG_precompiled_mode) {
|
| - // Leave enough space for patching in case of lazy deoptimization.
|
| - __ nop(ShortCallPattern::pattern_length_in_bytes());
|
| - lazy_deopt_return_pc_offset_ = assembler()->CodeSize();
|
| - __ Jmp(*StubCode::DeoptimizeLazyFromReturn_entry(), PP);
|
| - lazy_deopt_throw_pc_offset_ = assembler()->CodeSize();
|
| - __ Jmp(*StubCode::DeoptimizeLazyFromThrow_entry(), PP);
|
| - }
|
| - EndCodeSourceRange(TokenPosition::kDartCodeEpilogue);
|
| }
|
|
|
|
|
|
|