2024-12-16 16:12:36 +00:00
|
|
|
//@ add-core-stubs
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ compile-flags: --target thumbv6m-none-eabi
|
|
|
|
//@ needs-llvm-components: arm
|
|
|
|
//@ needs-asm-support
|
2022-07-11 13:47:22 +00:00
|
|
|
|
2024-12-16 16:12:36 +00:00
|
|
|
#![feature(no_core)]
|
2022-07-11 13:47:22 +00:00
|
|
|
#![no_core]
|
|
|
|
#![crate_type = "rlib"]
|
|
|
|
|
2024-12-16 16:12:36 +00:00
|
|
|
extern crate minicore;
|
|
|
|
use minicore::*;
|
2022-07-11 13:47:22 +00:00
|
|
|
|
|
|
|
pub fn foo() {
|
|
|
|
unsafe {
|
|
|
|
asm!("", in("r8") 0);
|
|
|
|
//~^ cannot use register `r8`: high registers (r8+) can only be used as clobbers in Thumb-1 code
|
|
|
|
}
|
|
|
|
}
|