| ... | ... | @@ -1547,7 +1547,6 @@ fn walkInstruction( |
| 1547 | 1547 | }; |
| 1548 | 1548 | }, |
| 1549 | 1549 | |
| 1550 | | // @check array_cat and array_mul |
| 1551 | 1550 | .add, |
| 1552 | 1551 | .addwrap, |
| 1553 | 1552 | .add_sat, |
| ... | ... | @@ -1564,9 +1563,8 @@ fn walkInstruction( |
| 1564 | 1563 | .bit_or, |
| 1565 | 1564 | .bit_and, |
| 1566 | 1565 | .xor, |
| 1567 | | // @check still not working when applied in std |
| 1568 | | // .array_cat, |
| 1569 | | // .array_mul, |
| 1566 | .array_cat, |
| 1567 | .array_mul, |
| 1570 | 1568 | => { |
| 1571 | 1569 | const pl_node = data[inst_index].pl_node; |
| 1572 | 1570 | const extra = file.zir.extraData(Zir.Inst.Bin, pl_node.payload_index); |
| ... | ... | @@ -2881,7 +2879,9 @@ fn walkInstruction( |
| 2881 | 2879 | .expr = .{ .@"struct" = field_vals }, |
| 2882 | 2880 | }; |
| 2883 | 2881 | }, |
| 2884 | | .struct_init_empty => { |
| 2882 | .struct_init_empty, |
| 2883 | .struct_init_empty_result, |
| 2884 | => { |
| 2885 | 2885 | const un_node = data[inst_index].un_node; |
| 2886 | 2886 | |
| 2887 | 2887 | var operand: DocData.WalkResult = try self.walkRef( |