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

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

29 lines
569 B
Rust
Raw Normal View History

//@ add-core-stubs
2022-02-19 21:46:49 +00:00
//@ compile-flags: --target armv5te-unknown-linux-gnueabi
//@ needs-llvm-components: arm
//@ needs-asm-support
2022-02-19 21:46:49 +00:00
//@ build-pass
#![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") _);
}
}