blob: 522ac1fe8877ccac6c6e965465b01ed23af285ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//@ add-core-stubs
//@ compile-flags: --target thumbv6m-none-eabi
//@ needs-llvm-components: arm
//@ needs-asm-support
#![feature(no_core)]
#![no_core]
#![crate_type = "rlib"]
extern crate minicore;
use minicore::*;
pub fn foo() {
unsafe {
asm!("", in("r8") 0);
//~^ ERROR cannot use register `r8`: high registers (r8+) can only be used as clobbers in Thumb-1 code
}
}
|