Function checkInDyldBind [src]
Creates a new check checking specifically dyld bind opcodes contents parsed and dumped
from the object file.
This check is target-dependent and applicable to MachO only.
Prototype
pub fn checkInDyldBind(check_object: *CheckObject) void
Parameters
check_object: *CheckObject
Source
pub fn checkInDyldBind(check_object: *CheckObject) void {
const label = switch (check_object.obj_format) {
.macho => MachODumper.dyld_bind_label,
else => @panic("Unsupported target platform"),
};
check_object.checkStart(.dyld_bind);
check_object.checkExact(label);
}