diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/wasm2asm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wasm2asm.h b/src/wasm2asm.h index 0a6c26739..867cab374 100644 --- a/src/wasm2asm.h +++ b/src/wasm2asm.h @@ -610,6 +610,7 @@ Ref Wasm2AsmBuilder::processFunctionBody(Expression* curr, IString result) { case 4: ret = ValueBuilder::makeSub(ValueBuilder::makeName(HEAP32), ValueBuilder::makePtrShift(ptr, 2)); break; default: abort(); } + break; } case f32: ret = ValueBuilder::makeSub(ValueBuilder::makeName(HEAPF32), ValueBuilder::makePtrShift(ptr, 2)); break; case f64: ret = ValueBuilder::makeSub(ValueBuilder::makeName(HEAPF64), ValueBuilder::makePtrShift(ptr, 3)); break; |