| author | |
| committer | |
| log | 4530b446b1c0cd18e4f91f45aec8f314e563175f |
| tree | b8777644dca138a5f129a874e06cfc12ad8ea18f |
| parent | 5e52666c83e667c452c9ba0c1c69df68b5492a34 |
1 files changed, 19 insertions(+), 1 deletions(-)
src/Autodoc.zig+19-1| ... | ... | @@ -1196,7 +1196,25 @@ fn walkInstruction( |
| 1196 | 1196 | }, |
| 1197 | 1197 | |
| 1198 | 1198 | // @check array_cat and array_mul |
| 1199 | .add, .addwrap, .add_sat, .sub, .subwrap, .sub_sat, .mul, .mulwrap, .mul_sat, .div, .shl, .shl_sat, .shr, .bit_or, .bit_and => { | |
| 1199 | .add, | |
| 1200 | .addwrap, | |
| 1201 | .add_sat, | |
| 1202 | .sub, | |
| 1203 | .subwrap, | |
| 1204 | .sub_sat, | |
| 1205 | .mul, | |
| 1206 | .mulwrap, | |
| 1207 | .mul_sat, | |
| 1208 | .div, | |
| 1209 | .shl, | |
| 1210 | .shl_sat, | |
| 1211 | .shr, | |
| 1212 | .bit_or, | |
| 1213 | .bit_and, | |
| 1214 | // @check still not working when applied in std | |
| 1215 | // .array_cat, | |
| 1216 | // .array_mul, | |
| 1217 | => { | |
| 1200 | 1218 | const pl_node = data[inst_index].pl_node; |
| 1201 | 1219 | const extra = file.zir.extraData(Zir.Inst.Bin, pl_node.payload_index); |
| 1202 | 1220 |