This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +0
-15
lines changed
ide-completion/src/completions Expand file tree Collapse file tree 3 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -363,7 +363,6 @@ has_interner!(CallableSig);
363363pub enum FnAbi {
364364 Aapcs ,
365365 AapcsUnwind ,
366- AmdgpuKernel ,
367366 AvrInterrupt ,
368367 AvrNonBlockingInterrupt ,
369368 C ,
@@ -422,7 +421,6 @@ impl FnAbi {
422421 match s {
423422 "aapcs-unwind" => FnAbi :: AapcsUnwind ,
424423 "aapcs" => FnAbi :: Aapcs ,
425- "amdgpu-kernel" => FnAbi :: AmdgpuKernel ,
426424 "avr-interrupt" => FnAbi :: AvrInterrupt ,
427425 "avr-non-blocking-interrupt" => FnAbi :: AvrNonBlockingInterrupt ,
428426 "C-cmse-nonsecure-call" => FnAbi :: CCmseNonsecureCall ,
@@ -465,7 +463,6 @@ impl FnAbi {
465463 match self {
466464 FnAbi :: Aapcs => "aapcs" ,
467465 FnAbi :: AapcsUnwind => "aapcs-unwind" ,
468- FnAbi :: AmdgpuKernel => "amdgpu-kernel" ,
469466 FnAbi :: AvrInterrupt => "avr-interrupt" ,
470467 FnAbi :: AvrNonBlockingInterrupt => "avr-non-blocking-interrupt" ,
471468 FnAbi :: C => "C" ,
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ const SUPPORTED_CALLING_CONVENTIONS: &[&str] = &[
2626 "ptx-kernel" ,
2727 "msp430-interrupt" ,
2828 "x86-interrupt" ,
29- "amdgpu-kernel" ,
3029 "efiapi" ,
3130 "avr-interrupt" ,
3231 "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]
963963
964964[#44839]: https://github.com/rust-lang/rust/issues/44839
965965
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-
977966------------------------
978967"## ,
979968 } ,
You can’t perform that action at this time.
0 commit comments