This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
src/tools/rust-analyzer/crates/hir-ty/src Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -388,7 +388,6 @@ pub enum FnAbi {
388
388
FastcallUnwind ,
389
389
Msp430Interrupt ,
390
390
PtxKernel ,
391
- AmdgpuKernel ,
392
391
RiscvInterruptM ,
393
392
RiscvInterruptS ,
394
393
Rust ,
@@ -447,7 +446,6 @@ impl FnAbi {
447
446
s if * s == sym:: fastcall => FnAbi :: Fastcall ,
448
447
s if * s == sym:: msp430_dash_interrupt => FnAbi :: Msp430Interrupt ,
449
448
s if * s == sym:: ptx_dash_kernel => FnAbi :: PtxKernel ,
450
- s if * s == sym:: amdgpu_dash_kernel => FnAbi :: AmdgpuKernel ,
451
449
s if * s == sym:: riscv_dash_interrupt_dash_m => FnAbi :: RiscvInterruptM ,
452
450
s if * s == sym:: riscv_dash_interrupt_dash_s => FnAbi :: RiscvInterruptS ,
453
451
s if * s == sym:: rust_dash_call => FnAbi :: RustCall ,
@@ -490,7 +488,6 @@ impl FnAbi {
490
488
FnAbi :: FastcallUnwind => "fastcall-unwind" ,
491
489
FnAbi :: Msp430Interrupt => "msp430-interrupt" ,
492
490
FnAbi :: PtxKernel => "ptx-kernel" ,
493
- FnAbi :: AmdgpuKernel => "amdgpu-kernel" ,
494
491
FnAbi :: RiscvInterruptM => "riscv-interrupt-m" ,
495
492
FnAbi :: RiscvInterruptS => "riscv-interrupt-s" ,
496
493
FnAbi :: Rust => "Rust" ,
You can’t perform that action at this time.
0 commit comments