| Index: src/compiler/mips/code-generator-mips.cc
|
| diff --git a/src/compiler/mips/code-generator-mips.cc b/src/compiler/mips/code-generator-mips.cc
|
| index 931112483d8d859730ab848e1a0ac212082a4932..64e3664265b1f2c15758d4ad5fce206ddc8a4fce 100644
|
| --- a/src/compiler/mips/code-generator-mips.cc
|
| +++ b/src/compiler/mips/code-generator-mips.cc
|
| @@ -750,6 +750,9 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
|
| case kIeee754Float64Cos:
|
| ASSEMBLE_IEEE754_UNOP(cos);
|
| break;
|
| + case kIeee754Float64Cosh:
|
| + ASSEMBLE_IEEE754_UNOP(cosh);
|
| + break;
|
| case kIeee754Float64Cbrt:
|
| ASSEMBLE_IEEE754_UNOP(cbrt);
|
| break;
|
| @@ -782,9 +785,15 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
|
| case kIeee754Float64Sin:
|
| ASSEMBLE_IEEE754_UNOP(sin);
|
| break;
|
| + case kIeee754Float64Sinh:
|
| + ASSEMBLE_IEEE754_UNOP(sinh);
|
| + break;
|
| case kIeee754Float64Tan:
|
| ASSEMBLE_IEEE754_UNOP(tan);
|
| break;
|
| + case kIeee754Float64Tanh:
|
| + ASSEMBLE_IEEE754_UNOP(tanh);
|
| + break;
|
| case kMipsAdd:
|
| __ Addu(i.OutputRegister(), i.InputRegister(0), i.InputOperand(1));
|
| break;
|
|
|