diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/wasm2asm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm2asm.h b/src/wasm2asm.h index 5003dee7f..2b7d6a455 100644 --- a/src/wasm2asm.h +++ b/src/wasm2asm.h @@ -679,7 +679,7 @@ Ref Wasm2AsmBuilder::processFunctionBody(Expression* curr, IString result) { ret[2]->push_back(ValueBuilder::makeDouble(curr->value.f32)); return ret; } - case f64: return ValueBuilder::makeDouble(curr->value.f64); + case f64: return ValueBuilder::makeUnary(PLUS, ValueBuilder::makeDouble(curr->value.f64)); default: abort(); } } |