File tree 3 files changed +0
-15
lines changed
ide-completion/src/completions
3 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -363,7 +363,6 @@ has_interner!(CallableSig);
363
363
pub enum FnAbi {
364
364
Aapcs ,
365
365
AapcsUnwind ,
366
- AmdgpuKernel ,
367
366
AvrInterrupt ,
368
367
AvrNonBlockingInterrupt ,
369
368
C ,
@@ -422,7 +421,6 @@ impl FnAbi {
422
421
match s {
423
422
"aapcs-unwind" => FnAbi :: AapcsUnwind ,
424
423
"aapcs" => FnAbi :: Aapcs ,
425
- "amdgpu-kernel" => FnAbi :: AmdgpuKernel ,
426
424
"avr-interrupt" => FnAbi :: AvrInterrupt ,
427
425
"avr-non-blocking-interrupt" => FnAbi :: AvrNonBlockingInterrupt ,
428
426
"C-cmse-nonsecure-call" => FnAbi :: CCmseNonsecureCall ,
@@ -465,7 +463,6 @@ impl FnAbi {
465
463
match self {
466
464
FnAbi :: Aapcs => "aapcs" ,
467
465
FnAbi :: AapcsUnwind => "aapcs-unwind" ,
468
- FnAbi :: AmdgpuKernel => "amdgpu-kernel" ,
469
466
FnAbi :: AvrInterrupt => "avr-interrupt" ,
470
467
FnAbi :: AvrNonBlockingInterrupt => "avr-non-blocking-interrupt" ,
471
468
FnAbi :: C => "C" ,
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ const SUPPORTED_CALLING_CONVENTIONS: &[&str] = &[
26
26
"ptx-kernel" ,
27
27
"msp430-interrupt" ,
28
28
"x86-interrupt" ,
29
- "amdgpu-kernel" ,
30
29
"efiapi" ,
31
30
"avr-interrupt" ,
32
31
"avr-non-blocking-interrupt" ,
Original file line number Diff line number Diff line change @@ -963,17 +963,6 @@ The tracking issue for this feature is: [#44839]
963
963
964
964
[#44839]: https://github.com/rust-lang/rust/issues/44839
965
965
966
- ------------------------
967
- "## ,
968
- } ,
969
- Lint {
970
- label : "abi_amdgpu_kernel" ,
971
- description : r##"# `abi_amdgpu_kernel`
972
-
973
- The tracking issue for this feature is: [#51575]
974
-
975
- [#51575]: https://github.com/rust-lang/rust/issues/51575
976
-
977
966
------------------------
978
967
"## ,
979
968
} ,
You can’t perform that action at this time.
0 commit comments