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/value.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/value.zig')
| -rw-r--r-- | src/value.zig | 2 |
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, |
