diff options
Diffstat (limited to 'src/wasm2asm.h')
-rw-r--r-- | src/wasm2asm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wasm2asm.h b/src/wasm2asm.h index ea8fd8142..357896654 100644 --- a/src/wasm2asm.h +++ b/src/wasm2asm.h @@ -475,6 +475,9 @@ void Wasm2AsmBuilder::addBasics(Ref ast) { addMath(MATH_CLZ32, CLZ32); addMath(MATH_MIN, MIN); addMath(MATH_MAX, MAX); + addMath(MATH_FLOOR, FLOOR); + addMath(MATH_CEIL, CEIL); + addMath(MATH_SQRT, SQRT); } void Wasm2AsmBuilder::addImport(Ref ast, Import* import) { |