Files
rust/tests/ui/cmse-nonsecure/cmse-nonsecure-call/params-via-stack.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
809 B
Rust
Raw Normal View History

//@ add-core-stubs
//@ compile-flags: --target thumbv8m.main-none-eabi --crate-type lib
//@ needs-llvm-components: arm
2025-06-06 23:07:41 -07:00
#![feature(abi_cmse_nonsecure_call, no_core, lang_items)]
#![no_core]
extern crate minicore;
use minicore::*;
#[repr(C, align(16))]
#[allow(unused)]
pub struct AlignRelevant(u32);
#[no_mangle]
pub fn test(
2025-06-06 23:07:41 -07:00
f1: extern "cmse-nonsecure-call" fn(u32, u32, u32, u32, x: u32, y: u32), //~ ERROR [E0798]
f2: extern "cmse-nonsecure-call" fn(u32, u32, u32, u16, u16), //~ ERROR [E0798]
f3: extern "cmse-nonsecure-call" fn(u32, u64, u32), //~ ERROR [E0798]
f4: extern "cmse-nonsecure-call" fn(AlignRelevant, u32), //~ ERROR [E0798]
f5: extern "cmse-nonsecure-call" fn([u32; 5]), //~ ERROR [E0798]
) {
}