| ... | ... | @@ -16988,7 +16988,6 @@ static IrInstGen *ir_analyze_tuple_cat(IrAnalyze *ira, IrInst* source_instr, |
| 16988 | 16988 | return ira->codegen->invalid_inst_gen; |
| 16989 | 16989 | |
| 16990 | 16990 | ZigList<IrInstGen *> const_ptrs = {}; |
| 16991 | | IrInstGen *first_non_const_instruction = nullptr; |
| 16992 | 16991 | for (uint32_t i = 0; i < new_field_count; i += 1) { |
| 16993 | 16992 | TypeStructField *dst_field = new_type->data.structure.fields[i]; |
| 16994 | 16993 | IrInstGen *src_struct_op; |
| ... | ... | @@ -17010,8 +17009,6 @@ static IrInstGen *ir_analyze_tuple_cat(IrAnalyze *ira, IrInst* source_instr, |
| 17010 | 17009 | return ira->codegen->invalid_inst_gen; |
| 17011 | 17010 | if (instr_is_comptime(field_value)) { |
| 17012 | 17011 | const_ptrs.append(dest_ptr); |
| 17013 | | } else { |
| 17014 | | first_non_const_instruction = field_value; |
| 17015 | 17012 | } |
| 17016 | 17013 | IrInstGen *store_ptr_inst = ir_analyze_store_ptr(ira, source_instr, dest_ptr, field_value, |
| 17017 | 17014 | true); |