| Index: src/a64/lithium-codegen-a64.cc
|
| diff --git a/src/a64/lithium-codegen-a64.cc b/src/a64/lithium-codegen-a64.cc
|
| index 62a3b76cf2db79f18f76d58bc8205be2d6bf80fa..69352b19e1efe738cd536a47d372e9191840ebb7 100644
|
| --- a/src/a64/lithium-codegen-a64.cc
|
| +++ b/src/a64/lithium-codegen-a64.cc
|
| @@ -3852,6 +3852,13 @@ void LCodeGen::DoMathLog(LMathLog* instr) {
|
| }
|
|
|
|
|
| +void LCodeGen::DoMathClz32(LMathClz32* instr) {
|
| + Register input = ToRegister32(instr->value());
|
| + Register result = ToRegister32(instr->result());
|
| + __ Clz(result, input);
|
| +}
|
| +
|
| +
|
| void LCodeGen::DoMathPowHalf(LMathPowHalf* instr) {
|
| DoubleRegister input = ToDoubleRegister(instr->value());
|
| DoubleRegister result = ToDoubleRegister(instr->result());
|
|
|