aboutsummaryrefslogtreecommitdiff
path: root/src/value.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/value.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/value.zig')
-rw-r--r--src/value.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/value.zig b/src/value.zig
index 7a0636dda0..47f69b2099 100644
--- a/src/value.zig
+++ b/src/value.zig
@@ -22,7 +22,7 @@ pub const Value = extern union {
tag_if_small_enough: Tag,
ptr_otherwise: *Payload,
- // Keep in sync with tools/zig-gdb.py
+ // Keep in sync with tools/stage2_pretty_printers_common.py
pub const Tag = enum(usize) {
// The first section of this enum are tags that require no payload.
u1_type,