authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-03-10 10:38:21+00:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-03-10 10:38:21+00:00
log793fa93d9f99b49a6d91bd40195f5fcc783014d5
tree2d0e0859b3e609795d1160367a3f7480aef0584c
parent4a310ce7c13c9aa485200a2b712562ba20854272
signaturelock-open Commit is signed but in an unrecognized format.

stage1: update zig1.wasm

Generated using a compiler bootstrapped from the merge base of this branch, and wasm-opt version 118. Signed-off-by: Matthew Lugg <mlugg@mlugg.co.uk>

2 files changed, 9 insertions(+), 1 deletions(-)

stage1/zig.h+9-1
......@@ -151,6 +151,14 @@
151151#define zig_has_attribute(attribute) 0
152152#endif
153153
154#if __STDC_VERSION__ >= 201112L
155#define zig_static_assert(cond, msg) _Static_assert(cond, msg)
156#elif zig_has_attribute(unused)
157#define zig_static_assert(cond, _) typedef char zig_expand_concat(zig_static_assert_fail_, __LINE__)[!!(cond)] __attribute__((unused))
158#else
159#define zig_static_assert(cond, _) typedef char zig_expand_concat(zig_static_assert_fail_, __LINE__)[!!(cond)]
160#endif
161
154162#if __STDC_VERSION__ >= 202311L
155163#define zig_threadlocal thread_local
156164#elif __STDC_VERSION__ >= 201112L
......@@ -259,7 +267,7 @@
259267#endif
260268
261269#if zig_has_attribute(packed) || defined(zig_tinyc)
262#define zig_packed(definition) __attribute__((packed)) definition
270#define zig_packed(definition) definition __attribute__((packed))
263271#elif defined(zig_msvc)
264272#define zig_packed(definition) __pragma(pack(1)) definition __pragma(pack())
265273#else
stage1/zig1.wasm
Binary files a/stage1/zig1.wasm and b/stage1/zig1.wasm differ