Function checkInDynamicSymtab [src]
Creates a new check checking specifically dynamic symbol table parsed and dumped from the object
file.
This check is target-dependent and applicable to ELF only.
Prototype
pub fn checkInDynamicSymtab(check_object: *CheckObject) void
Parameters
check_object: *CheckObject
Source
pub fn checkInDynamicSymtab(check_object: *CheckObject) void {
const label = switch (check_object.obj_format) {
.elf => ElfDumper.dynamic_symtab_label,
else => @panic("Unsupported target platform"),
};
check_object.checkStart(.dynamic_symtab);
check_object.checkExact(label);
}