| Index: src/wasm/wasm-opcodes.h
|
| diff --git a/src/wasm/wasm-opcodes.h b/src/wasm/wasm-opcodes.h
|
| index 1a1e273eff3b5cadb1b5162f077be259f43c81d5..99f997ce66d6601e32a717856d5fc91ff18dfb4f 100644
|
| --- a/src/wasm/wasm-opcodes.h
|
| +++ b/src/wasm/wasm-opcodes.h
|
| @@ -252,7 +252,11 @@ std::ostream& operator<<(std::ostream& os, const FunctionSig& function);
|
| V(F64ConvertF32, 0xb2, d_f) \
|
| V(F64ReinterpretI64, 0xb3, d_l) \
|
| V(I32ReinterpretF32, 0xb4, i_f) \
|
| - V(I64ReinterpretF64, 0xb5, l_d)
|
| + V(I64ReinterpretF64, 0xb5, l_d) \
|
| + V(I32Ror, 0xb6, i_ii) \
|
| + V(I32Rol, 0xb7, i_ii) \
|
| + V(I64Ror, 0xb8, l_ll) \
|
| + V(I64Rol, 0xb9, l_ll)
|
|
|
| // All opcodes.
|
| #define FOREACH_OPCODE(V) \
|
|
|