mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
Merge #11613
11613: fix: Add `abort` to safe intrinsics list r=lnicola a=lnicola Closes #11611 bors r+ Co-authored-by: Laurențiu Nicola <lnicola@dend.ro>
This commit is contained in:
commit
59088d8066
1 changed files with 1 additions and 0 deletions
|
@ -702,6 +702,7 @@ enum GenericsOwner<'a> {
|
||||||
fn is_intrinsic_fn_unsafe(name: &Name) -> bool {
|
fn is_intrinsic_fn_unsafe(name: &Name) -> bool {
|
||||||
// Should be kept in sync with https://github.com/rust-lang/rust/blob/532d2b14c05f9bc20b2d27cbb5f4550d28343a36/compiler/rustc_typeck/src/check/intrinsic.rs#L72-L106
|
// Should be kept in sync with https://github.com/rust-lang/rust/blob/532d2b14c05f9bc20b2d27cbb5f4550d28343a36/compiler/rustc_typeck/src/check/intrinsic.rs#L72-L106
|
||||||
![
|
![
|
||||||
|
known::abort,
|
||||||
known::add_with_overflow,
|
known::add_with_overflow,
|
||||||
known::bitreverse,
|
known::bitreverse,
|
||||||
known::black_box,
|
known::black_box,
|
||||||
|
|
Loading…
Reference in a new issue