| 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 0c0444a78f7d3e158af077157c3c5a22202a4991..1dd499a74e207050d8cbab8c6d2b9b5bf15aa452 100644
|
| --- a/runtime/vm/flow_graph_compiler_x64.cc
|
| +++ b/runtime/vm/flow_graph_compiler_x64.cc
|
| @@ -27,18 +27,6 @@ DEFINE_FLAG(bool, unbox_mints, true, "Optimize 64-bit integer arithmetic.");
|
| DECLARE_FLAG(bool, enable_simd_inline);
|
|
|
|
|
| -void MegamorphicSlowPath::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| - Assembler* assembler = compiler->assembler();
|
| -#define __ assembler->
|
| - __ Bind(entry_label());
|
| - __ Comment("MegamorphicSlowPath");
|
| - compiler->EmitMegamorphicInstanceCall(ic_data_, argument_count_, deopt_id_,
|
| - token_pos_, locs_, try_index_);
|
| - __ jmp(exit_label());
|
| -#undef __
|
| -}
|
| -
|
| -
|
| FlowGraphCompiler::~FlowGraphCompiler() {
|
| // BlockInfos are zone-allocated, so their destructors are not called.
|
| // Verify the labels explicitly here.
|
|
|