From a20d081129ac6cad1df4afff057bd07e79d1d561 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2024 22:04:29 -0700 Subject: [PATCH] Air: remove deprecated/unused decl --- src/Air.zig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Air.zig b/src/Air.zig index d1c6d184e6..4a442aa332 100644 --- a/src/Air.zig +++ b/src/Air.zig @@ -1,4 +1,5 @@ //! Analyzed Intermediate Representation. +//! //! This data is produced by Sema and consumed by codegen. //! Unlike ZIR where there is one instance for an entire source file, each function //! gets its own `Air` instance. @@ -12,8 +13,6 @@ const Value = @import("Value.zig"); const Type = @import("Type.zig"); const InternPool = @import("InternPool.zig"); const Zcu = @import("Zcu.zig"); -/// Deprecated. -const Module = Zcu; instructions: std.MultiArrayList(Inst).Slice, /// The meaning of this data is determined by `Inst.Tag` value.