Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions fuzz/fuzz_targets/fastalloc_checker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ impl Arbitrary<'_> for TestCase {
clobbers: true,
reftypes: false,
callsite_ish_constraints: true,
..Options::default()
},
)?,
})
Expand All @@ -37,8 +38,8 @@ fuzz_target!(|testcase: TestCase| {
let _ = env_logger::try_init();
log::trace!("func:\n{:?}", func);
let env = regalloc2::fuzzing::func::machine_env();
let out =
regalloc2::fuzzing::fastalloc::run(&func, &env, true, false).expect("regalloc did not succeed");
let out = regalloc2::fuzzing::fastalloc::run(&func, &env, true, false)
.expect("regalloc did not succeed");

let mut checker = Checker::new(&func, &env);
checker.prepare(&out);
Expand Down
1 change: 1 addition & 0 deletions fuzz/fuzz_targets/ion_checker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ impl Arbitrary<'_> for TestCase {
clobbers: true,
reftypes: true,
callsite_ish_constraints: true,
..Options::default()
},
)?,
})
Expand Down
1 change: 1 addition & 0 deletions fuzz/fuzz_targets/ssagen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ impl Arbitrary<'_> for TestCase {
clobbers: true,
reftypes: true,
callsite_ish_constraints: true,
..Options::default()
},
)?,
})
Expand Down
Loading