| Index: runtime/vm/flow_graph_compiler_ia32.cc
|
| diff --git a/runtime/vm/flow_graph_compiler_ia32.cc b/runtime/vm/flow_graph_compiler_ia32.cc
|
| index 90ec1f2800865f954e392616527ecc709129e018..48837844b64872d3705e03cce39d59d2bc0143d9 100644
|
| --- a/runtime/vm/flow_graph_compiler_ia32.cc
|
| +++ b/runtime/vm/flow_graph_compiler_ia32.cc
|
| @@ -31,18 +31,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.
|
|
|