2022-02-19 21:46:49 +00:00
|
|
|
//@ compile-flags: --target armv5te-unknown-linux-gnueabi
|
|
|
|
//@ needs-llvm-components: arm
|
2022-03-19 15:50:24 +00:00
|
|
|
//@ needs-asm-support
|
2022-02-19 21:46:49 +00:00
|
|
|
//@ build-pass
|
|
|
|
|
2022-09-29 08:27:03 +00:00
|
|
|
#![feature(no_core, lang_items, rustc_attrs)]
|
2022-02-19 21:46:49 +00:00
|
|
|
#![no_core]
|
|
|
|
#![crate_type = "rlib"]
|
|
|
|
|
|
|
|
#[rustc_builtin_macro]
|
|
|
|
macro_rules! asm {
|
|
|
|
() => {};
|
|
|
|
}
|
|
|
|
#[lang = "sized"]
|
|
|
|
trait Sized {}
|
|
|
|
|
|
|
|
// 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") _);
|
|
|
|
}
|
|
|
|
}
|