Jacob G-W

Results 12 issues of Jacob G-W

When viewing src/main.zig (of zig) and skipping to the end of the file, it displays everything as strings. ![image](https://user-images.githubusercontent.com/58830309/108613059-311d9400-73bc-11eb-8c65-07472e16f1de.png) I have also experienced this with the vim plugin, but it...

### Zig Version 0.9.0-dev.1686+696e51be4 ### Steps to Reproduce compile and run this with the latest master stage2: ```zig const plan9 = @import("std").os.plan9; pub fn main() void { const file =...

bug
stage2
arch-x86_64
backend-self-hosted

Closes https://github.com/ziglang/zig/issues/12805

### Zig Version 0.10.0-dev.4470+8a344fab3 ### Steps to Reproduce In the zig main repository on commit `a4eb221b9ef7dab8fa1c6cc07c7891e25d98d2b6` ```sh rm -rf zig-out/ zig-cache/ zig build # this zig is downloaded from the...

bug
stage2
backend-self-hosted

This adds * unnamed decl support * relocation support Hello world now works again

This enables this: ``` cpu% cat test.zig const std = @import("std"); const p9 = std.os.plan9; pub fn main() void { var buf: [50]u8 = undefined; const res = std.fmt.bufPrint(&buf, "argc:...

This resolves a TODO Was split off from #1108