Skip to content

Commit

Permalink
Don't ICE on C-cmse-nonsecure-call either
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn3 committed Dec 16, 2022
1 parent ee05e4d commit 8b47801
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/abi/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8b47801

Please sign in to comment.