Skip to content

Commit 1ab1a25

Browse files
committed
Auto merge of #16463 - clubby789:remove-abi_amdgpu_kernel, r=lnicola
internal: Remove `abi_amdgpu_kernel` references This feature was removed in rust-lang/rust#120495
2 parents 0396811 + a1fdb87 commit 1ab1a25

File tree

3 files changed

+0
-15
lines changed

3 files changed

+0
-15
lines changed

crates/hir-ty/src/lib.rs

-3
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,6 @@ has_interner!(CallableSig);
363363
pub 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",

crates/ide-completion/src/completions/extern_abi.rs

-1
Original file line numberDiff line numberDiff 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",

crates/ide-db/src/generated/lints.rs

-11
Original file line numberDiff line numberDiff 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
},

0 commit comments

Comments
 (0)