| Index: src/compiler/wasm-compiler.cc
|
| diff --git a/src/compiler/wasm-compiler.cc b/src/compiler/wasm-compiler.cc
|
| index f4b4a18d7310492f270b726274f714c3d4718ced..f7dd60e03a8d263a3e634d613e098fea7c6edbe1 100644
|
| --- a/src/compiler/wasm-compiler.cc
|
| +++ b/src/compiler/wasm-compiler.cc
|
| @@ -3374,6 +3374,8 @@ Node* WasmGraphBuilder::SimdOp(wasm::WasmOpcode opcode,
|
| return graph()->NewNode(jsgraph()->machine()->Float32x4Abs(), inputs[0]);
|
| case wasm::kExprF32x4Neg:
|
| return graph()->NewNode(jsgraph()->machine()->Float32x4Neg(), inputs[0]);
|
| + case wasm::kExprF32x4Sqrt:
|
| + return graph()->NewNode(jsgraph()->machine()->Float32x4Sqrt(), inputs[0]);
|
| case wasm::kExprF32x4Add:
|
| return graph()->NewNode(jsgraph()->machine()->Float32x4Add(), inputs[0],
|
| inputs[1]);
|
|
|