summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/asm2wasm.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/asm2wasm.h b/src/asm2wasm.h
index ac9732e68..118e5d662 100644
--- a/src/asm2wasm.h
+++ b/src/asm2wasm.h
@@ -179,6 +179,7 @@ private:
char getSigFromType(WasmType type) {
switch (type) {
case i32: return 'i';
+ case f32: return 'f';
case f64: return 'd';
case none: return 'v';
default: abort();