diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-02-26 21:51:19 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-02-26 21:51:19 -0700 |
| commit | b116063e02bf2bb1975f5ae862fcd25f8fbeda09 (patch) | |
| tree | e6d0c0c0099bef2402ab5ffb770ac6a145a47878 /src/Module.zig | |
| parent | a2e87aba664c622fe368ce7fcbcdc499b9fd9cf9 (diff) | |
| download | zig-b116063e02bf2bb1975f5ae862fcd25f8fbeda09.tar.gz zig-b116063e02bf2bb1975f5ae862fcd25f8fbeda09.zip | |
move AstGen to std.zig.AstGen
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 6316979f4c..e3e97bb291 100644 --- a/src/Module.zig +++ b/src/Module.zig @@ -28,7 +28,7 @@ const link = @import("link.zig"); const Air = @import("Air.zig"); const Zir = std.zig.Zir; const trace = @import("tracy.zig").trace; -const AstGen = @import("AstGen.zig"); +const AstGen = std.zig.AstGen; const Sema = @import("Sema.zig"); const target_util = @import("target.zig"); const build_options = @import("build_options"); |
