Fixed all fuzzer targets (some API changes)

This commit is contained in:
Chris Fallin
2021-05-19 18:25:34 -07:00
parent f1c6dfe807
commit f56676fb8d
3 changed files with 18 additions and 15 deletions

View File

@@ -37,6 +37,6 @@ impl Arbitrary for TestCase {
}
fuzz_target!(|t: TestCase| {
let cfginfo = CFGInfo::new(&t.f);
let cfginfo = CFGInfo::new(&t.f).expect("could not create CFG info");
validate_ssa(&t.f, &cfginfo).expect("invalid SSA");
});