1
Fork 0
rust/tests/ui/asm/issue-92378.rs

29 lines
569 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
2022-02-19 21:46:49 +00:00
#![feature(no_core)]
2022-02-19 21:46:49 +00:00
#![no_core]
#![crate_type = "rlib"]
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") _);
}
}