about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorclubby789 <jamie@hill-daniel.co.uk>2024-01-30 15:39:29 +0000
committerclubby789 <jamie@hill-daniel.co.uk>2024-01-30 15:46:40 +0000
commitb2ff1231dd335a5752acd560bc0c8dbfb2484366 (patch)
tree320f6209e6d1c7be89e74ff04016dcc94d1b233b /src
parent0061bb7faf34f89f0227757a04566fe319455eed (diff)
downloadrust-b2ff1231dd335a5752acd560bc0c8dbfb2484366.tar.gz
rust-b2ff1231dd335a5752acd560bc0c8dbfb2484366.zip
Remove the `abi_amdgpu_kernel` feature
Diffstat (limited to 'src')
-rw-r--r--src/abi/mod.rs6
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");
         }
     }