xxxbxxx

Results 5 issues of xxxbxxx

### Zig Version zig-0.10.0-dev.4437+1e963053d ### Steps to Reproduce ```zig threadlocal var global: u32 = 23; threadlocal var global_ptr: *u32 = &global; pub fn main() !void { if (global_ptr.* != 23)...

bug
stage2
miscompilation

https://github.com/ziglang/zig/issues/11891

Support for the use case: `zig objcopy --strip-all program stripped --extract-to stripped.dbg` to separate the debug & symbols sections out to a companion file, with a corresponding `.gnu_debuglink`. note: this...

forcing llvm to truncate the padding bits on load prevents some optimizations. fixes 370662c565ba541157e3c69d12625c28787d642e closes https://github.com/ziglang/zig/issues/17768

This code construct used to work with fxc.exe but doesn't compile with dxc. Is this expected? ```hlsl static const uint2 c2Thread= uint2(8, 8); static const uint cThread = c2Thread.x*c2Thread.y; groupshared...

bug
fxc-disagrees