| Index: runtime/vm/intermediate_language_mips.cc
|
| diff --git a/runtime/vm/intermediate_language_mips.cc b/runtime/vm/intermediate_language_mips.cc
|
| index 645273fe83fe62fd3838009dba530ef4d2982a79..612d97e4f4b42406adc129511a5e72db629045ad 100644
|
| --- a/runtime/vm/intermediate_language_mips.cc
|
| +++ b/runtime/vm/intermediate_language_mips.cc
|
| @@ -4063,15 +4063,6 @@ void BinaryInt32x4OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
|
|
| LocationSummary* MathUnaryInstr::MakeLocationSummary(Zone* zone,
|
| bool opt) const {
|
| - if ((kind() == MathUnaryInstr::kSin) || (kind() == MathUnaryInstr::kCos)) {
|
| - const intptr_t kNumInputs = 1;
|
| - const intptr_t kNumTemps = 0;
|
| - LocationSummary* summary = new(zone) LocationSummary(
|
| - zone, kNumInputs, kNumTemps, LocationSummary::kCall);
|
| - summary->set_in(0, Location::FpuRegisterLocation(D6));
|
| - summary->set_out(0, Location::FpuRegisterLocation(D0));
|
| - return summary;
|
| - }
|
| ASSERT((kind() == MathUnaryInstr::kSqrt) ||
|
| (kind() == MathUnaryInstr::kDoubleSquare));
|
| const intptr_t kNumInputs = 1;
|
| @@ -4092,7 +4083,7 @@ void MathUnaryInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| DRegister result = locs()->out(0).fpu_reg();
|
| __ muld(result, val, val);
|
| } else {
|
| - __ CallRuntime(TargetFunction(), InputCount());
|
| + UNREACHABLE();
|
| }
|
| }
|
|
|
|
|