mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-02 22:54:58 +00:00
Remove references to platform-intrinsic ABI
This commit is contained in:
parent
e6276c8b64
commit
1dbe681757
3 changed files with 0 additions and 5 deletions
|
@ -385,7 +385,6 @@ pub enum FnAbi {
|
||||||
Fastcall,
|
Fastcall,
|
||||||
FastcallUnwind,
|
FastcallUnwind,
|
||||||
Msp430Interrupt,
|
Msp430Interrupt,
|
||||||
PlatformIntrinsic,
|
|
||||||
PtxKernel,
|
PtxKernel,
|
||||||
RiscvInterruptM,
|
RiscvInterruptM,
|
||||||
RiscvInterruptS,
|
RiscvInterruptS,
|
||||||
|
@ -444,7 +443,6 @@ impl FnAbi {
|
||||||
s if *s == sym::fastcall_dash_unwind => FnAbi::FastcallUnwind,
|
s if *s == sym::fastcall_dash_unwind => FnAbi::FastcallUnwind,
|
||||||
s if *s == sym::fastcall => FnAbi::Fastcall,
|
s if *s == sym::fastcall => FnAbi::Fastcall,
|
||||||
s if *s == sym::msp430_dash_interrupt => FnAbi::Msp430Interrupt,
|
s if *s == sym::msp430_dash_interrupt => FnAbi::Msp430Interrupt,
|
||||||
s if *s == sym::platform_dash_intrinsic => FnAbi::PlatformIntrinsic,
|
|
||||||
s if *s == sym::ptx_dash_kernel => FnAbi::PtxKernel,
|
s if *s == sym::ptx_dash_kernel => FnAbi::PtxKernel,
|
||||||
s if *s == sym::riscv_dash_interrupt_dash_m => FnAbi::RiscvInterruptM,
|
s if *s == sym::riscv_dash_interrupt_dash_m => FnAbi::RiscvInterruptM,
|
||||||
s if *s == sym::riscv_dash_interrupt_dash_s => FnAbi::RiscvInterruptS,
|
s if *s == sym::riscv_dash_interrupt_dash_s => FnAbi::RiscvInterruptS,
|
||||||
|
@ -487,7 +485,6 @@ impl FnAbi {
|
||||||
FnAbi::Fastcall => "fastcall",
|
FnAbi::Fastcall => "fastcall",
|
||||||
FnAbi::FastcallUnwind => "fastcall-unwind",
|
FnAbi::FastcallUnwind => "fastcall-unwind",
|
||||||
FnAbi::Msp430Interrupt => "msp430-interrupt",
|
FnAbi::Msp430Interrupt => "msp430-interrupt",
|
||||||
FnAbi::PlatformIntrinsic => "platform-intrinsic",
|
|
||||||
FnAbi::PtxKernel => "ptx-kernel",
|
FnAbi::PtxKernel => "ptx-kernel",
|
||||||
FnAbi::RiscvInterruptM => "riscv-interrupt-m",
|
FnAbi::RiscvInterruptM => "riscv-interrupt-m",
|
||||||
FnAbi::RiscvInterruptS => "riscv-interrupt-s",
|
FnAbi::RiscvInterruptS => "riscv-interrupt-s",
|
||||||
|
|
|
@ -38,7 +38,6 @@ const SUPPORTED_CALLING_CONVENTIONS: &[&str] = &[
|
||||||
"system-unwind",
|
"system-unwind",
|
||||||
"rust-intrinsic",
|
"rust-intrinsic",
|
||||||
"rust-call",
|
"rust-call",
|
||||||
"platform-intrinsic",
|
|
||||||
"unadjusted",
|
"unadjusted",
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -99,7 +99,6 @@ define_symbols! {
|
||||||
cdecl_dash_unwind = "cdecl-unwind",
|
cdecl_dash_unwind = "cdecl-unwind",
|
||||||
fastcall_dash_unwind = "fastcall-unwind",
|
fastcall_dash_unwind = "fastcall-unwind",
|
||||||
msp430_dash_interrupt = "msp430-interrupt",
|
msp430_dash_interrupt = "msp430-interrupt",
|
||||||
platform_dash_intrinsic = "platform-intrinsic",
|
|
||||||
ptx_dash_kernel = "ptx-kernel",
|
ptx_dash_kernel = "ptx-kernel",
|
||||||
riscv_dash_interrupt_dash_m = "riscv-interrupt-m",
|
riscv_dash_interrupt_dash_m = "riscv-interrupt-m",
|
||||||
riscv_dash_interrupt_dash_s = "riscv-interrupt-s",
|
riscv_dash_interrupt_dash_s = "riscv-interrupt-s",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue