diff options
| author | clubby789 <jamie@hill-daniel.co.uk> | 2024-01-30 15:39:29 +0000 |
|---|---|---|
| committer | clubby789 <jamie@hill-daniel.co.uk> | 2024-01-30 15:46:40 +0000 |
| commit | b2ff1231dd335a5752acd560bc0c8dbfb2484366 (patch) | |
| tree | 320f6209e6d1c7be89e74ff04016dcc94d1b233b /src | |
| parent | 0061bb7faf34f89f0227757a04566fe319455eed (diff) | |
| download | rust-b2ff1231dd335a5752acd560bc0c8dbfb2484366.tar.gz rust-b2ff1231dd335a5752acd560bc0c8dbfb2484366.zip | |
Remove the `abi_amdgpu_kernel` feature
Diffstat (limited to 'src')
| -rw-r--r-- | src/abi/mod.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/abi/mod.rs b/src/abi/mod.rs index abd70dd4458..0f0d828c8fc 100644 --- a/src/abi/mod.rs +++ b/src/abi/mod.rs @@ -56,11 +56,7 @@ pub(crate) fn conv_to_call_conv(sess: &Session, c: Conv, default_call_conv: Call sess.dcx().fatal("C-cmse-nonsecure-call call conv is not yet implemented"); } - Conv::Msp430Intr - | Conv::PtxKernel - | Conv::AmdGpuKernel - | Conv::AvrInterrupt - | Conv::AvrNonBlockingInterrupt => { + Conv::Msp430Intr | Conv::PtxKernel | Conv::AvrInterrupt | Conv::AvrNonBlockingInterrupt => { unreachable!("tried to use {c:?} call conv which only exists on an unsupported target"); } } |
