authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-07-15 22:04:29-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-07-15 22:04:29-07:00
loga20d081129ac6cad1df4afff057bd07e79d1d561
treeea8c61f1c80ed3ff524528bb8be9eeb766334464
parent3a6ef6ffe1258eda043bb6a44237cf980b5d7833

Air: remove deprecated/unused decl


1 files changed, 1 insertions(+), 2 deletions(-)

src/Air.zig+1-2
......@@ -1,4 +1,5 @@
11//! Analyzed Intermediate Representation.
2//!
23//! This data is produced by Sema and consumed by codegen.
34//! Unlike ZIR where there is one instance for an entire source file, each function
45//! gets its own `Air` instance.
......@@ -12,8 +13,6 @@ const Value = @import("Value.zig");
1213const Type = @import("Type.zig");
1314const InternPool = @import("InternPool.zig");
1415const Zcu = @import("Zcu.zig");
15/// Deprecated.
16const Module = Zcu;
1716
1817instructions: std.MultiArrayList(Inst).Slice,
1918/// The meaning of this data is determined by `Inst.Tag` value.