2024-12-17 01:12:36 +09:00
|
|
|
//@ add-core-stubs
|
2022-02-19 21:46:49 +00:00
|
|
|
//@ compile-flags: --target armv5te-unknown-linux-gnueabi
|
|
|
|
//@ needs-llvm-components: arm
|
2022-03-19 16:50:24 +01:00
|
|
|
//@ needs-asm-support
|
2022-02-19 21:46:49 +00:00
|
|
|
//@ build-pass
|
|
|
|
|
2024-12-17 01:12:36 +09:00
|
|
|
#![feature(no_core)]
|
2022-02-19 21:46:49 +00:00
|
|
|
#![no_core]
|
|
|
|
#![crate_type = "rlib"]
|
|
|
|
|
2024-12-17 01:12:36 +09:00
|
|
|
extern crate minicore;
|
|
|
|
use minicore::*;
|
2022-02-19 21:46:49 +00:00
|
|
|
|
|
|
|
// ARM uses R11 for the frame pointer, make sure R7 is usable.
|
|
|
|
#[instruction_set(arm::a32)]
|
|
|
|
pub fn arm() {
|
|
|
|
unsafe {
|
|
|
|
asm!("", out("r7") _);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Thumb uses R7 for the frame pointer, make sure R11 is usable.
|
|
|
|
#[instruction_set(arm::t32)]
|
|
|
|
pub fn thumb() {
|
|
|
|
unsafe {
|
|
|
|
asm!("", out("r11") _);
|
|
|
|
}
|
|
|
|
}
|