aboutsummaryrefslogtreecommitdiff
path: root/src/Sema.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-05-22 14:27:56 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-05-22 14:29:16 -0700
commit79dee75b1ccd8f3f595aad0d4150851cff58f691 (patch)
tree964cff23e1de4c43f1d1d3ba01313b1c1a0fe4bf /src/Sema.zig
parent9d311e9960952838edb19a422e5023c670f9995d (diff)
downloadzig-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/Sema.zig')
-rw-r--r--src/Sema.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Sema.zig b/src/Sema.zig
index 920a615d6b..bf0158b37a 100644
--- a/src/Sema.zig
+++ b/src/Sema.zig
@@ -52,7 +52,7 @@ const Sema = @This();
const Value = @import("value.zig").Value;
const Type = @import("type.zig").Type;
const TypedValue = @import("TypedValue.zig");
-const ir = @import("ir.zig");
+const ir = @import("air.zig");
const Zir = @import("Zir.zig");
const Module = @import("Module.zig");
const Inst = ir.Inst;