aboutsummaryrefslogtreecommitdiff
path: root/src/type.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2022-10-16 23:33:13 -0400
committerAndrew Kelley <andrew@ziglang.org>2022-10-17 07:55:28 -0400
commit1e963053d0ff67361b587b046a917375e963d5e9 (patch)
treec5a318eef4ee88c6539919335f35e6955f1b7f0d /src/type.zig
parentc010767311904177681280c6427eb360200df28f (diff)
downloadzig-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.zig2
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,