diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-07-08 20:42:47 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-07-20 12:18:14 -0700 |
| commit | 5d6f7b44c19b064a543b0c1eecb6ef5c671b612e (patch) | |
| tree | 394376c930ddafef6d5455d9b80baff5abbae4b4 /src/link/Elf.zig | |
| parent | bfe20051673e285d3b1788cd637fab9ca84d1cb1 (diff) | |
| download | zig-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/link/Elf.zig')
| -rw-r--r-- | src/link/Elf.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/link/Elf.zig b/src/link/Elf.zig index d754b478b9..90224866ba 100644 --- a/src/link/Elf.zig +++ b/src/link/Elf.zig @@ -10,7 +10,7 @@ const log = std.log.scoped(.link); const DW = std.dwarf; const leb128 = std.leb; -const ir = @import("../air.zig"); +const Air = @import("../Air.zig"); const Module = @import("../Module.zig"); const Compilation = @import("../Compilation.zig"); const codegen = @import("../codegen.zig"); |
