diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-07-08 14:24:16 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-07-08 14:24:16 -0700 |
| commit | 476faef97ab0f292159bb3eef42078f9b1e43dde (patch) | |
| tree | fdbe0ebed92520fa7920409cc65c9b51ca9dd288 /src/link.zig | |
| parent | 4eb778fc3eeec62c5c45ccc0a21631ff757d8a23 (diff) | |
| download | zig-476faef97ab0f292159bb3eef42078f9b1e43dde.tar.gz zig-476faef97ab0f292159bb3eef42078f9b1e43dde.zip | |
plan9 cleanups
* rename files to adhere to conventions
* remove unnecessary function / optionality
* fix merge conflict
* better panic message
* remove unnecessary TODO comment
* proper namespacing of declarations
* clean up documentation comments
* no copyright header needed for a brand new zig file that is not
copied from anywhere
Diffstat (limited to 'src/link.zig')
| -rw-r--r-- | src/link.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/link.zig b/src/link.zig index 2c1f048f63..61a46e8b06 100644 --- a/src/link.zig +++ b/src/link.zig @@ -333,7 +333,7 @@ pub const File = struct { .elf => return @fieldParentPtr(Elf, "base", base).updateDeclLineNumber(module, decl), .macho => return @fieldParentPtr(MachO, "base", base).updateDeclLineNumber(module, decl), .c => return @fieldParentPtr(C, "base", base).updateDeclLineNumber(module, decl), - .plan9 => @panic("PLAN 9 DEBUG INFO"), + .plan9 => @panic("TODO: implement updateDeclLineNumber for plan9"), .wasm, .spirv => {}, } } |
