| author | |
| committer | |
| log | 84adbeb0773dd1375ea0d8106a0845022531110c |
| tree | 372132b71f40ab67636c39f3d517cd53b5d69325 |
| parent | 22d61faf17490a375c0613d1567a0b0d7400ddcb |
1 files changed, 2 insertions(+), 1 deletions(-)
src/Autodoc.zig+2-1| ... | ... | @@ -1471,7 +1471,8 @@ fn walkInstruction( |
| 1471 | 1471 | }; |
| 1472 | 1472 | }, |
| 1473 | 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 | 1476 | const len = try self.walkRef(file, parent_scope, bin.lhs, false); |
| 1476 | 1477 | const child = try self.walkRef(file, parent_scope, bin.rhs, false); |
| 1477 | 1478 |