| Index: src/compiler/ia32/code-generator-ia32.cc
|
| diff --git a/src/compiler/ia32/code-generator-ia32.cc b/src/compiler/ia32/code-generator-ia32.cc
|
| index a9477d0eda7d6b794e161c2f87b25c3b0b1c0201..c4122f6b25a5d4d627b9f00e18944e9557329921 100644
|
| --- a/src/compiler/ia32/code-generator-ia32.cc
|
| +++ b/src/compiler/ia32/code-generator-ia32.cc
|
| @@ -661,6 +661,12 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
|
| case kIeee754Float64Log1p:
|
| ASSEMBLE_IEEE754_UNOP(log1p);
|
| break;
|
| + case kIeee754Float64Log2:
|
| + ASSEMBLE_IEEE754_UNOP(log2);
|
| + break;
|
| + case kIeee754Float64Log10:
|
| + ASSEMBLE_IEEE754_UNOP(log10);
|
| + break;
|
| case kIA32Add:
|
| if (HasImmediateInput(instr, 1)) {
|
| __ add(i.InputOperand(0), i.InputImmediate(1));
|
|
|