| Index: src/compiler/x64/code-generator-x64.cc
|
| diff --git a/src/compiler/x64/code-generator-x64.cc b/src/compiler/x64/code-generator-x64.cc
|
| index b42694c2cac642fbad717137530fdc379425c76b..72a9c39f2dbc44241a1c2ed9c30cc5f21e6e353e 100644
|
| --- a/src/compiler/x64/code-generator-x64.cc
|
| +++ b/src/compiler/x64/code-generator-x64.cc
|
| @@ -882,6 +882,9 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
|
| case kIeee754Float64Cos:
|
| ASSEMBLE_IEEE754_UNOP(cos);
|
| break;
|
| + case kIeee754Float64Cosh:
|
| + ASSEMBLE_IEEE754_UNOP(cosh);
|
| + break;
|
| case kIeee754Float64Exp:
|
| ASSEMBLE_IEEE754_UNOP(exp);
|
| break;
|
| @@ -911,9 +914,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 kX64Add32:
|
| ASSEMBLE_BINOP(addl);
|
| break;
|
|
|