mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-28 18:43:01 +00:00
Support transmute_unchecked intrinsic for mir-eval
This commit is contained in:
parent
04f88362af
commit
fce18a5708
1 changed files with 1 additions and 1 deletions
|
|
@ -1121,7 +1121,7 @@ impl Evaluator<'_> {
|
||||||
// We don't call any drop glue yet, so there is nothing here
|
// We don't call any drop glue yet, so there is nothing here
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
"transmute" => {
|
"transmute" | "transmute_unchecked" => {
|
||||||
let [arg] = args else {
|
let [arg] = args else {
|
||||||
return Err(MirEvalError::InternalError(
|
return Err(MirEvalError::InternalError(
|
||||||
"transmute arg is not provided".into(),
|
"transmute arg is not provided".into(),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue