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