GCC: https://gcc.gnu.org/gcc-15/changes.html:
{0} initializer in C or C++ for unions no longer guarantees clearing of the whole union (except for static storage duration initialization), it just initializes the first union member to zero. If initialization of the whole union including padding bits is desirable, use {} (valid in C23 or C++) or use -fzero-init-padding-bits=unions option to restore old GCC behavior.
This is critical for WASMValue whose first member is int32_t, but obviously it has larger members.
Discussions: https://news.ycombinator.com/item?id=43792948