Skip to content

Commit

Permalink
X
Browse files Browse the repository at this point in the history
  • Loading branch information
imbillow committed May 31, 2024
1 parent b8b7d8c commit 42a985c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion il-tests/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl InstructionConstraint {
let iter = self.0.iter().map(|x| match x {
BitConstraint::Unrestrained => rng.gen_bool(0.5),
BitConstraint::Defined(x) => *x,
BitConstraint::Restrained => false,
BitConstraint::Restrained => unreachable!(),
});
let data = BitVec::<u8>::from_iter(iter).as_raw_slice().into();
data
Expand Down

0 comments on commit 42a985c

Please sign in to comment.