diff options
Diffstat (limited to 'src/Zir.zig')
| -rw-r--r-- | src/Zir.zig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Zir.zig b/src/Zir.zig index 4fecfd3c50..1f1da17949 100644 --- a/src/Zir.zig +++ b/src/Zir.zig @@ -3416,8 +3416,9 @@ pub const DeclIterator = struct { it.extra_index += 5; // src_hash(4) + line(1) const name = it.zir.nullTerminatedString(it.zir.extra[it.extra_index]); it.extra_index += 3; // name(1) + value(1) + doc_comment(1) - it.extra_index += @as(u1, @truncate(flags >> 2)); - it.extra_index += @as(u1, @truncate(flags >> 3)); + it.extra_index += @as(u1, @truncate(flags >> 2)); // align + it.extra_index += @as(u1, @truncate(flags >> 3)); // link_section + it.extra_index += @as(u1, @truncate(flags >> 3)); // address_space return Item{ .sub_index = sub_index, |
