authorgravatar for paul.verigo@gmail.comPavel Verigo <paul.verigo@gmail.com> 2025-03-03 23:21:15+01:00
committergravatar for paul.verigo@gmail.comPavel Verigo <paul.verigo@gmail.com> 2025-03-24 15:00:00+01:00
log911f4527f0ad166d84d77887602a784b1e801421
tree6a5cd1daf95cf299f1f65fc13dec9c8dd2553518
parent47cd0961cb938248a2bc65d2a9d49ba1d37b0764

stage2-wasm: behavior tests pass with ReleaseFast/Small


1 files changed, 3 insertions(+), 0 deletions(-)

src/arch/wasm/CodeGen.zig+3
......@@ -2362,6 +2362,9 @@ fn store(cg: *CodeGen, lhs: WValue, rhs: WValue, ty: Type, offset: u32) InnerErr
23622362 const pt = cg.pt;
23632363 const zcu = pt.zcu;
23642364 const abi_size = ty.abiSize(zcu);
2365
2366 if (!ty.hasRuntimeBitsIgnoreComptime(zcu)) return;
2367
23652368 switch (ty.zigTypeTag(zcu)) {
23662369 .error_union => {
23672370 const pl_ty = ty.errorUnionPayload(zcu);