diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-02-26 20:58:10 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-02-26 21:35:30 -0700 |
| commit | 7b37bc771b9a1ed38b06358269bf6a716a38de60 (patch) | |
| tree | adbec372f70eac7fe1b4fa19f1be8a0d6224a29c /src/InternPool.zig | |
| parent | 5f3b21a5b6895bd2bfc7144a038a4b7b60313736 (diff) | |
| download | zig-7b37bc771b9a1ed38b06358269bf6a716a38de60.tar.gz zig-7b37bc771b9a1ed38b06358269bf6a716a38de60.zip | |
move Zir to std.zig.Zir
Part of an effort to ship more of the compiler in source form.
Diffstat (limited to 'src/InternPool.zig')
| -rw-r--r-- | src/InternPool.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/InternPool.zig b/src/InternPool.zig index 70c332e9ac..5ff179cb74 100644 --- a/src/InternPool.zig +++ b/src/InternPool.zig @@ -338,7 +338,7 @@ const Hash = std.hash.Wyhash; const InternPool = @This(); const Module = @import("Module.zig"); const Zcu = Module; -const Zir = @import("Zir.zig"); +const Zir = std.zig.Zir; const KeyAdapter = struct { intern_pool: *const InternPool, |
