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>
This commit is contained in:
Matthew Lugg
2026-03-10 10:38:21 +00:00
parent 4a310ce7c1
commit 793fa93d9f
2 changed files with 9 additions and 1 deletions
+9 -1
View File
@@ -151,6 +151,14 @@
#define zig_has_attribute(attribute) 0
#endif
#if __STDC_VERSION__ >= 201112L
#define zig_static_assert(cond, msg) _Static_assert(cond, msg)
#elif zig_has_attribute(unused)
#define zig_static_assert(cond, _) typedef char zig_expand_concat(zig_static_assert_fail_, __LINE__)[!!(cond)] __attribute__((unused))
#else
#define zig_static_assert(cond, _) typedef char zig_expand_concat(zig_static_assert_fail_, __LINE__)[!!(cond)]
#endif
#if __STDC_VERSION__ >= 202311L
#define zig_threadlocal thread_local
#elif __STDC_VERSION__ >= 201112L
@@ -259,7 +267,7 @@
#endif
#if zig_has_attribute(packed) || defined(zig_tinyc)
#define zig_packed(definition) __attribute__((packed)) definition
#define zig_packed(definition) definition __attribute__((packed))
#elif defined(zig_msvc)
#define zig_packed(definition) __pragma(pack(1)) definition __pragma(pack())
#else
BIN
View File
Binary file not shown.