minor tweaks
This commit is contained in:
parent
fb652c39ae
commit
22ab973f0c
13 changed files with 223 additions and 144 deletions
|
|
@ -11,8 +11,8 @@ fuzz_target!(|data: &[u8]| {
|
|||
return;
|
||||
};
|
||||
let xr = xref::XrefIndex::build(&img);
|
||||
// Exercise the lookups over a bounded set of the discovered call targets — none may panic.
|
||||
for &t in xr.call_targets().iter().take(64) {
|
||||
// Exercise the lookups over a bounded set of the discovered function entries — none may panic.
|
||||
for &t in xr.entries().iter().take(64) {
|
||||
let _ = xr.referrers(t);
|
||||
let _ = xr.refs_to(t);
|
||||
let _ = xr.containing_func(t);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue