mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-14 14:13:58 +00:00
Auto merge of #16463 - clubby789:remove-abi_amdgpu_kernel, r=lnicola
internal: Remove `abi_amdgpu_kernel` references This feature was removed in https://github.com/rust-lang/rust/pull/120495
This commit is contained in:
commit
1ab1a25bba
3 changed files with 0 additions and 15 deletions
|
@ -363,7 +363,6 @@ has_interner!(CallableSig);
|
||||||
pub enum FnAbi {
|
pub enum FnAbi {
|
||||||
Aapcs,
|
Aapcs,
|
||||||
AapcsUnwind,
|
AapcsUnwind,
|
||||||
AmdgpuKernel,
|
|
||||||
AvrInterrupt,
|
AvrInterrupt,
|
||||||
AvrNonBlockingInterrupt,
|
AvrNonBlockingInterrupt,
|
||||||
C,
|
C,
|
||||||
|
@ -422,7 +421,6 @@ impl FnAbi {
|
||||||
match s {
|
match s {
|
||||||
"aapcs-unwind" => FnAbi::AapcsUnwind,
|
"aapcs-unwind" => FnAbi::AapcsUnwind,
|
||||||
"aapcs" => FnAbi::Aapcs,
|
"aapcs" => FnAbi::Aapcs,
|
||||||
"amdgpu-kernel" => FnAbi::AmdgpuKernel,
|
|
||||||
"avr-interrupt" => FnAbi::AvrInterrupt,
|
"avr-interrupt" => FnAbi::AvrInterrupt,
|
||||||
"avr-non-blocking-interrupt" => FnAbi::AvrNonBlockingInterrupt,
|
"avr-non-blocking-interrupt" => FnAbi::AvrNonBlockingInterrupt,
|
||||||
"C-cmse-nonsecure-call" => FnAbi::CCmseNonsecureCall,
|
"C-cmse-nonsecure-call" => FnAbi::CCmseNonsecureCall,
|
||||||
|
@ -465,7 +463,6 @@ impl FnAbi {
|
||||||
match self {
|
match self {
|
||||||
FnAbi::Aapcs => "aapcs",
|
FnAbi::Aapcs => "aapcs",
|
||||||
FnAbi::AapcsUnwind => "aapcs-unwind",
|
FnAbi::AapcsUnwind => "aapcs-unwind",
|
||||||
FnAbi::AmdgpuKernel => "amdgpu-kernel",
|
|
||||||
FnAbi::AvrInterrupt => "avr-interrupt",
|
FnAbi::AvrInterrupt => "avr-interrupt",
|
||||||
FnAbi::AvrNonBlockingInterrupt => "avr-non-blocking-interrupt",
|
FnAbi::AvrNonBlockingInterrupt => "avr-non-blocking-interrupt",
|
||||||
FnAbi::C => "C",
|
FnAbi::C => "C",
|
||||||
|
|
|
@ -26,7 +26,6 @@ const SUPPORTED_CALLING_CONVENTIONS: &[&str] = &[
|
||||||
"ptx-kernel",
|
"ptx-kernel",
|
||||||
"msp430-interrupt",
|
"msp430-interrupt",
|
||||||
"x86-interrupt",
|
"x86-interrupt",
|
||||||
"amdgpu-kernel",
|
|
||||||
"efiapi",
|
"efiapi",
|
||||||
"avr-interrupt",
|
"avr-interrupt",
|
||||||
"avr-non-blocking-interrupt",
|
"avr-non-blocking-interrupt",
|
||||||
|
|
|
@ -963,17 +963,6 @@ The tracking issue for this feature is: [#44839]
|
||||||
|
|
||||||
[#44839]: https://github.com/rust-lang/rust/issues/44839
|
[#44839]: https://github.com/rust-lang/rust/issues/44839
|
||||||
|
|
||||||
------------------------
|
|
||||||
"##,
|
|
||||||
},
|
|
||||||
Lint {
|
|
||||||
label: "abi_amdgpu_kernel",
|
|
||||||
description: r##"# `abi_amdgpu_kernel`
|
|
||||||
|
|
||||||
The tracking issue for this feature is: [#51575]
|
|
||||||
|
|
||||||
[#51575]: https://github.com/rust-lang/rust/issues/51575
|
|
||||||
|
|
||||||
------------------------
|
------------------------
|
||||||
"##,
|
"##,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue