aboutsummaryrefslogtreecommitdiff
path: root/src/InternPool.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-06-22 16:10:17 -0700
committerAndrew Kelley <andrew@ziglang.org>2024-06-22 22:59:56 -0400
commit0fcd59eadae468284943895f50bc9fc6d1924154 (patch)
tree45e95f4bf8057a80d18dc78f6fea00ac57768455 /src/InternPool.zig
parent6026bbd0adb445a0edd6defb0b378937dcce7a9b (diff)
downloadzig-0fcd59eadae468284943895f50bc9fc6d1924154.tar.gz
zig-0fcd59eadae468284943895f50bc9fc6d1924154.zip
rename src/Module.zig to src/Zcu.zig
This patch is a pure rename plus only changing the file path in `@import` sites, so it is expected to not create version control conflicts, even when rebasing.
Diffstat (limited to 'src/InternPool.zig')
-rw-r--r--src/InternPool.zig5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/InternPool.zig b/src/InternPool.zig
index 3669ab59d1..e297a8ea78 100644
--- a/src/InternPool.zig
+++ b/src/InternPool.zig
@@ -344,8 +344,9 @@ const Limb = std.math.big.Limb;
const Hash = std.hash.Wyhash;
const InternPool = @This();
-const Module = @import("Module.zig");
-const Zcu = Module;
+const Zcu = @import("Zcu.zig");
+/// Deprecated.
+const Module = Zcu;
const Zir = std.zig.Zir;
const KeyAdapter = struct {