diff options
| author | mlugg <mlugg@mlugg.co.uk> | 2024-06-11 21:00:39 +0100 |
|---|---|---|
| committer | mlugg <mlugg@mlugg.co.uk> | 2024-06-15 00:57:52 +0100 |
| commit | 07a24bec9a578857920f4c5508f1d7eea65177b8 (patch) | |
| tree | 3edd81d1bff8219dd9122291041b28c5ea5ec9ce /src/codegen/c.zig | |
| parent | e39cc0dff7fff510c3d72f61947b977589ea5583 (diff) | |
| download | zig-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/c.zig')
| -rw-r--r-- | src/codegen/c.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/c.zig b/src/codegen/c.zig index 9514b826ea..52290b5ee4 100644 --- a/src/codegen/c.zig +++ b/src/codegen/c.zig @@ -13,7 +13,7 @@ const Type = @import("../type.zig").Type; const C = link.File.C; const Decl = Zcu.Decl; const trace = @import("../tracy.zig").trace; -const LazySrcLoc = std.zig.LazySrcLoc; +const LazySrcLoc = Zcu.LazySrcLoc; const Air = @import("../Air.zig"); const Liveness = @import("../Liveness.zig"); const InternPool = @import("../InternPool.zig"); |
