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