Make dylib_flag cross-platform

This commit is contained in:
nora 2023-09-23 15:13:55 +02:00
parent 8c8172c55d
commit cf6706ebd6
5 changed files with 42 additions and 44 deletions

View file

@ -198,7 +198,8 @@ impl PassController {
fn next_in_worklist(&mut self) {
let PassControllerState::Bisecting {
current, worklist, ..
} = &mut self.state else {
} = &mut self.state
else {
unreachable!("next_in_worklist called on non-bisecting state");
};
match worklist.pop() {