Merge pull request #19842 from Veykril/push-zunlmrzpnrzk

minor: Support `transmute_unchecked` intrinsic for mir-eval
This commit is contained in:
Lukas Wirth 2025-05-22 06:05:35 +00:00 committed by GitHub
commit b64a934102
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1121,7 +1121,7 @@ impl Evaluator<'_> {
// We don't call any drop glue yet, so there is nothing here
Ok(())
}
"transmute" => {
"transmute" | "transmute_unchecked" => {
let [arg] = args else {
return Err(MirEvalError::InternalError(
"transmute arg is not provided".into(),