mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 04:19:13 +00:00
Remove abi_amdgpu_kernel
references
This commit is contained in:
parent
039681112f
commit
a1fdb876c3
3 changed files with 0 additions and 15 deletions
|
@ -363,7 +363,6 @@ has_interner!(CallableSig);
|
|||
pub enum FnAbi {
|
||||
Aapcs,
|
||||
AapcsUnwind,
|
||||
AmdgpuKernel,
|
||||
AvrInterrupt,
|
||||
AvrNonBlockingInterrupt,
|
||||
C,
|
||||
|
@ -422,7 +421,6 @@ impl FnAbi {
|
|||
match s {
|
||||
"aapcs-unwind" => FnAbi::AapcsUnwind,
|
||||
"aapcs" => FnAbi::Aapcs,
|
||||
"amdgpu-kernel" => FnAbi::AmdgpuKernel,
|
||||
"avr-interrupt" => FnAbi::AvrInterrupt,
|
||||
"avr-non-blocking-interrupt" => FnAbi::AvrNonBlockingInterrupt,
|
||||
"C-cmse-nonsecure-call" => FnAbi::CCmseNonsecureCall,
|
||||
|
@ -465,7 +463,6 @@ impl FnAbi {
|
|||
match self {
|
||||
FnAbi::Aapcs => "aapcs",
|
||||
FnAbi::AapcsUnwind => "aapcs-unwind",
|
||||
FnAbi::AmdgpuKernel => "amdgpu-kernel",
|
||||
FnAbi::AvrInterrupt => "avr-interrupt",
|
||||
FnAbi::AvrNonBlockingInterrupt => "avr-non-blocking-interrupt",
|
||||
FnAbi::C => "C",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue