diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-04 20:39:46 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-04 20:39:46 -0800 |
commit | eb9ec0570b19dd58ef1cd7f2ab64254c2b28539b (patch) | |
tree | e85c35e5d34d495b1ee037bddec92ad096834f24 /src | |
parent | ed4e14a5fc0f928db29690b35c06ada80ef68102 (diff) | |
download | binaryen-eb9ec0570b19dd58ef1cd7f2ab64254c2b28539b.tar.gz binaryen-eb9ec0570b19dd58ef1cd7f2ab64254c2b28539b.tar.bz2 binaryen-eb9ec0570b19dd58ef1cd7f2ab64254c2b28539b.zip |
fix wasm2asm store
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; |