This commit is contained in:
Chris Fallin 2022-11-29 02:45:07 -08:00
parent e9d4fe89b1
commit 61105ea7fc

View file

@ -220,7 +220,10 @@ impl<'a> WasmFuncBackend<'a> {
} }
} }
} }
_ => unreachable!(), &ValueDef::PickOutput(..) => {
self.lower_value(value, func);
}
def => unreachable!("Unexpected inst: {:?}", def),
} }
} }