mirror of
https://github.com/ziglang/zig.git
synced 2024-11-15 08:33:06 +00:00
autodoc: @check array_cat and array_mul
This commit is contained in:
parent
5e52666c83
commit
4530b446b1
@ -1196,7 +1196,25 @@ fn walkInstruction(
|
||||
},
|
||||
|
||||
// @check array_cat and array_mul
|
||||
.add, .addwrap, .add_sat, .sub, .subwrap, .sub_sat, .mul, .mulwrap, .mul_sat, .div, .shl, .shl_sat, .shr, .bit_or, .bit_and => {
|
||||
.add,
|
||||
.addwrap,
|
||||
.add_sat,
|
||||
.sub,
|
||||
.subwrap,
|
||||
.sub_sat,
|
||||
.mul,
|
||||
.mulwrap,
|
||||
.mul_sat,
|
||||
.div,
|
||||
.shl,
|
||||
.shl_sat,
|
||||
.shr,
|
||||
.bit_or,
|
||||
.bit_and,
|
||||
// @check still not working when applied in std
|
||||
// .array_cat,
|
||||
// .array_mul,
|
||||
=> {
|
||||
const pl_node = data[inst_index].pl_node;
|
||||
const extra = file.zir.extraData(Zir.Inst.Bin, pl_node.payload_index);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user