Function checkInArchiveSymtab [src]
Creates a new check checking specifically symbol table parsed and dumped from the archive
file.
Prototype
pub fn checkInArchiveSymtab(check_object: *CheckObject) void
Parameters
check_object: *CheckObject
Source
pub fn checkInArchiveSymtab(check_object: *CheckObject) void {
const label = switch (check_object.obj_format) {
.elf => ElfDumper.archive_symtab_label,
else => @panic("TODO other file formats"),
};
check_object.checkStart(.archive_symtab);
check_object.checkExact(label);
}