| ... | @@ -1471,7 +1471,8 @@ fn walkInstruction( | ... | @@ -1471,7 +1471,8 @@ fn walkInstruction( |
| 1471 | }; | 1471 | }; |
| 1472 | }, | 1472 | }, |
| 1473 | .array_type => { | 1473 | .array_type => { |
| 1474 | const bin = data[inst_index].bin; | 1474 | const pl_node = data[inst_index].pl_node; |
| | 1475 | const bin = file.zir.extraData(Zir.Inst.Bin, pl_node.payload_index).data; |
| 1475 | const len = try self.walkRef(file, parent_scope, bin.lhs, false); | 1476 | const len = try self.walkRef(file, parent_scope, bin.lhs, false); |
| 1476 | const child = try self.walkRef(file, parent_scope, bin.rhs, false); | 1477 | const child = try self.walkRef(file, parent_scope, bin.rhs, false); |
| 1477 | | 1478 | |