| Index: runtime/vm/intermediate_language_mips.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language_mips.cc (revision 40101)
|
| +++ runtime/vm/intermediate_language_mips.cc (working copy)
|
| @@ -4631,25 +4631,6 @@
|
| }
|
|
|
|
|
| -void TargetEntryInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| - __ Bind(compiler->GetJumpLabel(this));
|
| - if (!compiler->is_optimizing()) {
|
| - if (compiler->NeedsEdgeCounter(this)) {
|
| - compiler->EmitEdgeCounter();
|
| - }
|
| - // On MIPS the deoptimization descriptor points after the edge counter
|
| - // code so that we can reuse the same pattern matching code as at call
|
| - // sites, which matches backwards from the end of the pattern.
|
| - compiler->AddCurrentDescriptor(RawPcDescriptors::kDeopt,
|
| - deopt_id_,
|
| - Scanner::kNoSourcePos);
|
| - }
|
| - if (HasParallelMove()) {
|
| - compiler->parallel_move_resolver()->EmitNativeCode(parallel_move());
|
| - }
|
| -}
|
| -
|
| -
|
| LocationSummary* GotoInstr::MakeLocationSummary(Isolate* isolate,
|
| bool opt) const {
|
| return new(isolate) LocationSummary(isolate, 0, 0, LocationSummary::kNoCall);
|
|
|