diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-05-22 14:27:56 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-05-22 14:29:16 -0700 |
| commit | 79dee75b1ccd8f3f595aad0d4150851cff58f691 (patch) | |
| tree | 964cff23e1de4c43f1d1d3ba01313b1c1a0fe4bf /src/value.zig | |
| parent | 9d311e9960952838edb19a422e5023c670f9995d (diff) | |
| download | zig-79dee75b1ccd8f3f595aad0d4150851cff58f691.tar.gz zig-79dee75b1ccd8f3f595aad0d4150851cff58f691.zip | |
stage2: rename ir.zig to air.zig
We've settled on the nomenclature for the artifacts the compiler
pipeline produces:
1. Tokens
2. AST (Abstract Syntax Tree)
3. ZIR (Zig Intermediate Representation)
4. AIR (Analyzed Intermediate Representation)
5. Machine Code
Renaming `ir` identifiers to `air` will come with the inevitable
air-memory-layout branch that I plan to start after the 0.8.0 release.
Diffstat (limited to 'src/value.zig')
| -rw-r--r-- | src/value.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/value.zig b/src/value.zig index 86da01a7bb..d8256315da 100644 --- a/src/value.zig +++ b/src/value.zig @@ -7,7 +7,7 @@ const BigIntMutable = std.math.big.int.Mutable; const Target = std.Target; const Allocator = std.mem.Allocator; const Module = @import("Module.zig"); -const ir = @import("ir.zig"); +const ir = @import("air.zig"); /// This is the raw data, with no bookkeeping, no memory awareness, /// no de-duplication, and no type system awareness. |
