aboutsummaryrefslogtreecommitdiff
path: root/src/Sema.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-07-08 20:42:47 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-07-20 12:18:14 -0700
commit5d6f7b44c19b064a543b0c1eecb6ef5c671b612e (patch)
tree394376c930ddafef6d5455d9b80baff5abbae4b4 /src/Sema.zig
parentbfe20051673e285d3b1788cd637fab9ca84d1cb1 (diff)
downloadzig-5d6f7b44c19b064a543b0c1eecb6ef5c671b612e.tar.gz
zig-5d6f7b44c19b064a543b0c1eecb6ef5c671b612e.zip
stage2: rework AIR memory layout
This commit changes the AIR file and the documentation of the memory layout. The actual work of modifying the surrounding code (in Sema and codegen) is not yet done.
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 d7ce9fdf4f..85cb4aa423 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("air.zig");
+const Air = @import("Air.zig");
const Zir = @import("Zir.zig");
const Module = @import("Module.zig");
const Inst = ir.Inst;