diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-04-13 12:38:06 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-04-15 19:06:39 -0700 |
| commit | 9088d40e838b62c8f8ea0e6e68616b72e7704b27 (patch) | |
| tree | 7434f7064b0f1bd4fada91c3969c65eb5e437265 /src/Module.zig | |
| parent | 0170a242bb99e96fcb127e26e1b2fcbe5a19c4ee (diff) | |
| download | zig-9088d40e838b62c8f8ea0e6e68616b72e7704b27.tar.gz zig-9088d40e838b62c8f8ea0e6e68616b72e7704b27.zip | |
stage2: rename zir to Zir
since it now uses top level fields
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 c57566ddb0..3f9a78f8d1 100644 --- a/src/Module.zig +++ b/src/Module.zig @@ -21,7 +21,7 @@ const TypedValue = @import("TypedValue.zig"); const Package = @import("Package.zig"); const link = @import("link.zig"); const ir = @import("ir.zig"); -const Zir = @import("zir.zig"); // TODO rename this to Zir +const Zir = @import("Zir.zig"); const trace = @import("tracy.zig").trace; const AstGen = @import("AstGen.zig"); const Sema = @import("Sema.zig"); |
