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/Module.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/Module.zig')
| -rw-r--r-- | src/Module.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Module.zig b/src/Module.zig index aef54be700..6316979f4c 100644 --- a/src/Module.zig +++ b/src/Module.zig @@ -26,7 +26,7 @@ const TypedValue = @import("TypedValue.zig"); const Package = @import("Package.zig"); const link = @import("link.zig"); const Air = @import("Air.zig"); -const Zir = @import("Zir.zig"); +const Zir = std.zig.Zir; const trace = @import("tracy.zig").trace; const AstGen = @import("AstGen.zig"); const Sema = @import("Sema.zig"); |
