Commit c3148988a3

Andrew Kelley <andrew@ziglang.org>
2024-10-11 02:08:41
link.Elf.ZigObject: make resetShdrIndexes non generic
1 parent 4669269
Changed files (1)
src
link
src/link/Elf/ZigObject.zig
@@ -2027,7 +2027,7 @@ pub fn allocateAtom(self: *ZigObject, atom_ptr: *Atom, requires_padding: bool, e
     log.debug("  prev {?}, next {?}", .{ atom_ptr.prev_atom_ref, atom_ptr.next_atom_ref });
 }
 
-pub fn resetShdrIndexes(self: *ZigObject, backlinks: anytype) void {
+pub fn resetShdrIndexes(self: *ZigObject, backlinks: []const u32) void {
     for (self.atoms_indexes.items) |atom_index| {
         const atom_ptr = self.atom(atom_index) orelse continue;
         atom_ptr.output_section_index = backlinks[atom_ptr.output_section_index];