move Zir to std.zig.Zir

Part of an effort to ship more of the compiler in source form.
This commit is contained in:
Andrew Kelley
2024-02-26 20:58:10 -07:00
parent 5f3b21a5b6
commit 7b37bc771b
15 changed files with 15 additions and 15 deletions

View File

@@ -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");