aboutsummaryrefslogtreecommitdiff
path: root/src/codegen/spirv.zig
diff options
context:
space:
mode:
authormlugg <mlugg@mlugg.co.uk>2024-06-11 21:00:39 +0100
committermlugg <mlugg@mlugg.co.uk>2024-06-15 00:57:52 +0100
commit07a24bec9a578857920f4c5508f1d7eea65177b8 (patch)
tree3edd81d1bff8219dd9122291041b28c5ea5ec9ce /src/codegen/spirv.zig
parente39cc0dff7fff510c3d72f61947b977589ea5583 (diff)
downloadzig-07a24bec9a578857920f4c5508f1d7eea65177b8.tar.gz
zig-07a24bec9a578857920f4c5508f1d7eea65177b8.zip
compiler: move LazySrcLoc out of std
This is in preparation for some upcoming changes to how we represent source locations in the compiler. The bulk of the change here is dealing with the removal of `src()` methods from `Zir` types.
Diffstat (limited to 'src/codegen/spirv.zig')
-rw-r--r--src/codegen/spirv.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/spirv.zig b/src/codegen/spirv.zig
index 09185211ef..aec87b287a 100644
--- a/src/codegen/spirv.zig
+++ b/src/codegen/spirv.zig
@@ -9,7 +9,7 @@ const Module = @import("../Module.zig");
const Decl = Module.Decl;
const Type = @import("../type.zig").Type;
const Value = @import("../Value.zig");
-const LazySrcLoc = std.zig.LazySrcLoc;
+const LazySrcLoc = Module.LazySrcLoc;
const Air = @import("../Air.zig");
const Liveness = @import("../Liveness.zig");
const InternPool = @import("../InternPool.zig");