| ... | @@ -18516,6 +18516,9 @@ static ZigType *ir_analyze_instruction_from_bytes(IrAnalyze *ira, IrInstructionF | ... | @@ -18516,6 +18516,9 @@ static ZigType *ir_analyze_instruction_from_bytes(IrAnalyze *ira, IrInstructionF |
| 18516 | src_ptr_align = get_abi_alignment(ira->codegen, target->value.type); | 18516 | src_ptr_align = get_abi_alignment(ira->codegen, target->value.type); |
| 18517 | } | 18517 | } |
| 18518 | | 18518 | |
| | 18519 | if ((err = type_resolve(ira->codegen, dest_child_type, ResolveStatusSizeKnown))) |
| | 18520 | return ira->codegen->builtin_types.entry_invalid; |
| | 18521 | |
| 18519 | ZigType *dest_ptr_type = get_pointer_to_type_extra(ira->codegen, dest_child_type, | 18522 | ZigType *dest_ptr_type = get_pointer_to_type_extra(ira->codegen, dest_child_type, |
| 18520 | src_ptr_const, src_ptr_volatile, PtrLenUnknown, | 18523 | src_ptr_const, src_ptr_volatile, PtrLenUnknown, |
| 18521 | src_ptr_align, 0, 0); | 18524 | src_ptr_align, 0, 0); |