diff options
| author | Robin Voetter <robin@voetter.nl> | 2022-08-22 00:21:31 +0200 |
|---|---|---|
| committer | Robin Voetter <robin@voetter.nl> | 2022-10-12 20:36:12 +0200 |
| commit | 5d429b03e3d43e937e2b517d594275034a873959 (patch) | |
| tree | 2071dddfb806b692bf51864dd413c60c90d42bdd /src/Module.zig | |
| parent | 5f3b91437f5cd23bcae66227932555b7abe32669 (diff) | |
| download | zig-5d429b03e3d43e937e2b517d594275034a873959.tar.gz zig-5d429b03e3d43e937e2b517d594275034a873959.zip | |
stage2: add @addrSpaceCast builtin
Diffstat (limited to 'src/Module.zig')
| -rw-r--r-- | src/Module.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Module.zig b/src/Module.zig index 44502ab564..7d87bdba53 100644 --- a/src/Module.zig +++ b/src/Module.zig @@ -4617,7 +4617,7 @@ fn semaDecl(mod: *Module, decl_index: Decl.Index) !bool { .constant => target_util.defaultAddressSpace(target, .global_constant), else => unreachable, }, - else => |addrspace_ref| try sema.analyzeAddrspace(&block_scope, address_space_src, addrspace_ref, addrspace_ctx), + else => |addrspace_ref| try sema.analyzeAddressSpace(&block_scope, address_space_src, addrspace_ref, addrspace_ctx), }; }; |
