Function checkInIndirectSymtab [src]

Creates a new check checking specifically indirect symbol table parsed and dumped from the object file. This check is target-dependent and applicable to MachO only.

Prototype

pub fn checkInIndirectSymtab(check_object: *CheckObject) void

Parameters

check_object: *CheckObject

Source

pub fn checkInIndirectSymtab(check_object: *CheckObject) void { const label = switch (check_object.obj_format) { .macho => MachODumper.indirect_symtab_label, else => @panic("Unsupported target platform"), }; check_object.checkStart(.indirect_symtab); check_object.checkExact(label); }