Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 94399e0

Browse files
committed
Remove rust-analyzer changes
1 parent 7dce0b3 commit 94399e0

File tree

1 file changed

+0
-3
lines changed
  • src/tools/rust-analyzer/crates/hir-ty/src

1 file changed

+0
-3
lines changed

src/tools/rust-analyzer/crates/hir-ty/src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,6 @@ pub enum FnAbi {
388388
FastcallUnwind,
389389
Msp430Interrupt,
390390
PtxKernel,
391-
AmdgpuKernel,
392391
RiscvInterruptM,
393392
RiscvInterruptS,
394393
Rust,
@@ -447,7 +446,6 @@ impl FnAbi {
447446
s if *s == sym::fastcall => FnAbi::Fastcall,
448447
s if *s == sym::msp430_dash_interrupt => FnAbi::Msp430Interrupt,
449448
s if *s == sym::ptx_dash_kernel => FnAbi::PtxKernel,
450-
s if *s == sym::amdgpu_dash_kernel => FnAbi::AmdgpuKernel,
451449
s if *s == sym::riscv_dash_interrupt_dash_m => FnAbi::RiscvInterruptM,
452450
s if *s == sym::riscv_dash_interrupt_dash_s => FnAbi::RiscvInterruptS,
453451
s if *s == sym::rust_dash_call => FnAbi::RustCall,
@@ -490,7 +488,6 @@ impl FnAbi {
490488
FnAbi::FastcallUnwind => "fastcall-unwind",
491489
FnAbi::Msp430Interrupt => "msp430-interrupt",
492490
FnAbi::PtxKernel => "ptx-kernel",
493-
FnAbi::AmdgpuKernel => "amdgpu-kernel",
494491
FnAbi::RiscvInterruptM => "riscv-interrupt-m",
495492
FnAbi::RiscvInterruptS => "riscv-interrupt-s",
496493
FnAbi::Rust => "Rust",

0 commit comments

Comments
 (0)