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

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

27 lines
473 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"]
2024-12-18 22:05:27 +01:00
#![feature(no_core)]
#![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");
}