about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/abi/mod.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/abi/mod.rs b/src/abi/mod.rs
index 90ec8ec3685..3c34585d419 100644
--- a/src/abi/mod.rs
+++ b/src/abi/mod.rs
@@ -49,9 +49,11 @@ pub(crate) fn conv_to_call_conv(sess: &Session, c: Conv, default_call_conv: Call
         Conv::X86Intr => sess.fatal("x86-interrupt call conv not yet implemented"),
 
         Conv::ArmAapcs => sess.fatal("aapcs call conv not yet implemented"),
+        Conv::CCmseNonSecureCall => {
+            sess.fatal("C-cmse-nonsecure-call call conv is not yet implemented");
+        }
 
-        Conv::CCmseNonSecureCall
-        | Conv::Msp430Intr
+        Conv::Msp430Intr
         | Conv::PtxKernel
         | Conv::AmdGpuKernel
         | Conv::AvrInterrupt