| ... | @@ -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 function | 4 | //! 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"); |
| 12 | const Type = @import("Type.zig"); | 13 | const Type = @import("Type.zig"); |
| 13 | const InternPool = @import("InternPool.zig"); | 14 | const InternPool = @import("InternPool.zig"); |
| 14 | const Zcu = @import("Zcu.zig"); | 15 | const Zcu = @import("Zcu.zig"); |
| 15 | /// Deprecated. | | |
| 16 | const Module = Zcu; | | |
| 17 | | 16 | |
| 18 | instructions: std.MultiArrayList(Inst).Slice, | 17 | instructions: 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. |