2020-09-30 12:10:17 -05:00
|
|
|
// compile-flags: --target thumbv8m.main-none-eabi --crate-type lib
|
2021-06-13 13:19:39 -05:00
|
|
|
// needs-llvm-components: arm
|
2021-06-13 14:06:11 -05:00
|
|
|
#![feature(cmse_nonsecure_entry, no_core, lang_items)]
|
|
|
|
#![no_core]
|
|
|
|
#[lang="sized"]
|
|
|
|
trait Sized { }
|
2020-09-30 12:10:17 -05:00
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
#[cmse_nonsecure_entry]
|
2021-06-13 14:06:11 -05:00
|
|
|
//~^ ERROR `#[cmse_nonsecure_entry]` requires C ABI [E0776]
|
|
|
|
pub fn entry_function(_: u32, _: u32, _: u32, d: u32) -> u32 {
|
|
|
|
d
|
2020-09-30 12:10:17 -05:00
|
|
|
}
|