| ... | ... | @@ -17328,11 +17328,11 @@ fn zirPtrType(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air |
| 17328 | 17328 | break :blk abi_align; |
| 17329 | 17329 | } else 0; |
| 17330 | 17330 | |
| 17331 | | const address_space = if (inst_data.flags.has_addrspace) blk: { |
| 17331 | const address_space: std.builtin.AddressSpace = if (inst_data.flags.has_addrspace) blk: { |
| 17332 | 17332 | const ref = @intToEnum(Zir.Inst.Ref, sema.code.extra[extra_i]); |
| 17333 | 17333 | extra_i += 1; |
| 17334 | 17334 | break :blk try sema.analyzeAddressSpace(block, addrspace_src, ref, .pointer); |
| 17335 | | } else .generic; |
| 17335 | } else if (elem_ty.zigTypeTag() == .Fn and target.cpu.arch == .avr) .flash else .generic; |
| 17336 | 17336 | |
| 17337 | 17337 | const bit_offset = if (inst_data.flags.has_bit_range) blk: { |
| 17338 | 17338 | const ref = @intToEnum(Zir.Inst.Ref, sema.code.extra[extra_i]); |