mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
c6a166bac2
- merge error codes - use attribute name that is incompatible in error message - add test for conditional incompatible attribute - add `linkage` to the allowlist
31 lines
572 B
Rust
31 lines
572 B
Rust
//@ compile-flags: --target armv5te-unknown-linux-gnueabi
|
|
//@ needs-llvm-components: arm
|
|
//@ needs-asm-support
|
|
//@ build-pass
|
|
|
|
#![crate_type = "lib"]
|
|
#![feature(no_core, lang_items, rustc_attrs, naked_functions)]
|
|
#![no_core]
|
|
|
|
#[rustc_builtin_macro]
|
|
macro_rules! asm {
|
|
() => {};
|
|
}
|
|
|
|
#[lang = "sized"]
|
|
trait Sized {}
|
|
|
|
#[no_mangle]
|
|
#[naked]
|
|
#[instruction_set(arm::t32)]
|
|
unsafe extern "C" fn test_thumb() {
|
|
asm!("bx lr", options(noreturn));
|
|
}
|
|
|
|
#[no_mangle]
|
|
#[naked]
|
|
#[instruction_set(arm::t32)]
|
|
unsafe extern "C" fn test_arm() {
|
|
asm!("bx lr", options(noreturn));
|
|
}
|