diff options
| author | David Rubin <daviru007@icloud.com> | 2024-08-11 21:26:01 -0700 |
|---|---|---|
| committer | David Rubin <daviru007@icloud.com> | 2024-08-25 15:17:21 -0700 |
| commit | 863f74dcd20e56876bdc9a86fccf4e2e07b1a60e (patch) | |
| tree | 1434505624c36471748ed6e06523074404aab267 /src/link/SpirV.zig | |
| parent | bb531759bcf12191b60ea199594b8d1de30dabe7 (diff) | |
| download | zig-863f74dcd20e56876bdc9a86fccf4e2e07b1a60e.tar.gz zig-863f74dcd20e56876bdc9a86fccf4e2e07b1a60e.zip | |
comp: rename `module` to `zcu`
Diffstat (limited to 'src/link/SpirV.zig')
| -rw-r--r-- | src/link/SpirV.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/link/SpirV.zig b/src/link/SpirV.zig index 9964c09df0..7263b6d28d 100644 --- a/src/link/SpirV.zig +++ b/src/link/SpirV.zig @@ -229,7 +229,7 @@ pub fn flushModule(self: *SpirV, arena: Allocator, tid: Zcu.PerThread.Id, prog_n defer error_info.deinit(); try error_info.appendSlice("zig_errors:"); - const ip = &self.base.comp.module.?.intern_pool; + const ip = &self.base.comp.zcu.?.intern_pool; for (ip.global_error_set.getNamesFromMainThread()) |name| { // Errors can contain pretty much any character - to encode them in a string we must escape // them somehow. Easiest here is to use some established scheme, one which also preseves the |
