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 @@...@@ -1,4 +1,5 @@
1//! Analyzed Intermediate Representation.1//! Analyzed Intermediate Representation.
2//!
2//! This data is produced by Sema and consumed by codegen.3//! This data is produced by Sema and consumed by codegen.
3//! Unlike ZIR where there is one instance for an entire source file, each function4//! Unlike ZIR where there is one instance for an entire source file, each function
4//! gets its own `Air` instance.5//! gets its own `Air` instance.
...@@ -12,8 +13,6 @@ const Value = @import("Value.zig");...@@ -12,8 +13,6 @@ const Value = @import("Value.zig");
12const Type = @import("Type.zig");13const Type = @import("Type.zig");
13const InternPool = @import("InternPool.zig");14const InternPool = @import("InternPool.zig");
14const Zcu = @import("Zcu.zig");15const Zcu = @import("Zcu.zig");
15/// Deprecated.
16const Module = Zcu;
1716
18instructions: std.MultiArrayList(Inst).Slice,17instructions: std.MultiArrayList(Inst).Slice,
19/// The meaning of this data is determined by `Inst.Tag` value.18/// The meaning of this data is determined by `Inst.Tag` value.