aboutsummaryrefslogtreecommitdiff
path: root/src/Sema
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/Sema
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/Sema')
-rw-r--r--src/Sema/bitcast.zig2
-rw-r--r--src/Sema/comptime_ptr_access.zig2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Sema/bitcast.zig b/src/Sema/bitcast.zig
index 8781009137..62a0122fa1 100644
--- a/src/Sema/bitcast.zig
+++ b/src/Sema/bitcast.zig
@@ -765,7 +765,7 @@ const Allocator = std.mem.Allocator;
const assert = std.debug.assert;
const Sema = @import("../Sema.zig");
-const Zcu = @import("../Module.zig");
+const Zcu = @import("../Zcu.zig");
const InternPool = @import("../InternPool.zig");
const Type = @import("../type.zig").Type;
const Value = @import("../Value.zig");
diff --git a/src/Sema/comptime_ptr_access.zig b/src/Sema/comptime_ptr_access.zig
index de0afc4b85..59c4c9507d 100644
--- a/src/Sema/comptime_ptr_access.zig
+++ b/src/Sema/comptime_ptr_access.zig
@@ -1056,5 +1056,5 @@ const Block = Sema.Block;
const MutableValue = @import("../mutable_value.zig").MutableValue;
const Type = @import("../type.zig").Type;
const Value = @import("../Value.zig");
-const Zcu = @import("../Module.zig");
+const Zcu = @import("../Zcu.zig");
const LazySrcLoc = Zcu.LazySrcLoc;