diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2022-10-16 23:33:13 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-10-17 07:55:28 -0400 |
| commit | 1e963053d0ff67361b587b046a917375e963d5e9 (patch) | |
| tree | c5a318eef4ee88c6539919335f35e6955f1b7f0d /src/type.zig | |
| parent | c010767311904177681280c6427eb360200df28f (diff) | |
| download | zig-1e963053d0ff67361b587b046a917375e963d5e9.tar.gz zig-1e963053d0ff67361b587b046a917375e963d5e9.zip | |
tools: add lldb stage2 pretty printers
* Fix untagged struct names in debug info for llvm.
* Factor out common stage2 pretty printer data.
* Add lldb version of stage2 pretty printers.
Diffstat (limited to 'src/type.zig')
| -rw-r--r-- | src/type.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/type.zig b/src/type.zig index 3b46546df0..5685d097b9 100644 --- a/src/type.zig +++ b/src/type.zig @@ -6062,7 +6062,7 @@ pub const Type = extern union { pub const no_payload_count = @enumToInt(last_no_payload_tag) + 1; pub fn Type(comptime t: Tag) type { - // Keep in sync with tools/zig-gdb.py + // Keep in sync with tools/stage2_pretty_printers_common.py return switch (t) { .u1, .u8, |
