diff options
| author | Matthew Lugg <mlugg@mlugg.co.uk> | 2024-02-27 03:25:04 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-27 03:25:04 +0000 |
| commit | 8775d8bbcef347640c6ae7e73da02ca6eff1d669 (patch) | |
| tree | 3f04f80b042d7baf10074b6f88fabb5693b2b71e /src/Air.zig | |
| parent | f803761e13a65ccbc6a5508f2dc2d7723b010dab (diff) | |
| parent | 59447e53056d8fb6682b79accccffa176d0b44d1 (diff) | |
| download | zig-8775d8bbcef347640c6ae7e73da02ca6eff1d669.tar.gz zig-8775d8bbcef347640c6ae7e73da02ca6eff1d669.zip | |
Merge pull request #19062 from mlugg/dbg-var-blocks
compiler: decide dbg_var scoping based on AIR blocks
Diffstat (limited to 'src/Air.zig')
| -rw-r--r-- | src/Air.zig | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Air.zig b/src/Air.zig index fbd958dece..f316ed04e6 100644 --- a/src/Air.zig +++ b/src/Air.zig @@ -443,10 +443,6 @@ pub const Inst = struct { /// Result type is always void. /// Uses the `dbg_stmt` field. dbg_stmt, - /// Marks the beginning of a semantic scope for debug info variables. - dbg_block_begin, - /// Marks the end of a semantic scope for debug info variables. - dbg_block_end, /// Marks the start of an inline call. /// Uses the `ty_fn` field. dbg_inline_begin, @@ -1454,8 +1450,6 @@ pub fn typeOfIndex(air: *const Air, inst: Air.Inst.Index, ip: *const InternPool) .dbg_stmt, .dbg_inline_begin, .dbg_inline_end, - .dbg_block_begin, - .dbg_block_end, .dbg_var_ptr, .dbg_var_val, .store, @@ -1612,8 +1606,6 @@ pub fn mustLower(air: Air, inst: Air.Inst.Index, ip: *const InternPool) bool { .@"try", .try_ptr, .dbg_stmt, - .dbg_block_begin, - .dbg_block_end, .dbg_inline_begin, .dbg_inline_end, .dbg_var_ptr, |
