rust/tests/ui/asm/naked-functions-instruction-set.rs

27 lines
490 B
Rust
Raw Normal View History

//@ add-core-stubs
//@ compile-flags: --target armv5te-unknown-linux-gnueabi
//@ needs-llvm-components: arm
//@ needs-asm-support
//@ build-pass
#![crate_type = "lib"]
#![feature(no_core, naked_functions)]
#![no_core]
extern crate minicore;
use minicore::*;
#[no_mangle]
2025-03-29 17:30:11 +01:00
#[unsafe(naked)]
#[instruction_set(arm::t32)]
2025-03-29 17:30:11 +01:00
extern "C" fn test_thumb() {
naked_asm!("bx lr");
}
#[no_mangle]
2025-03-29 17:30:11 +01:00
#[unsafe(naked)]
#[instruction_set(arm::a32)]
2025-03-29 17:30:11 +01:00
extern "C" fn test_arm() {
naked_asm!("bx lr");
}