rust/tests/ui/asm/inline-syntax.rs

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

61 lines
1.8 KiB
Rust
Raw Normal View History

2021-03-08 22:48:08 -06:00
// revisions: x86_64 arm
//[x86_64] compile-flags: --target x86_64-unknown-linux-gnu
//[x86_64] check-pass
//[x86_64] needs-llvm-components: x86
2021-04-11 09:11:02 -05:00
//[x86_64_allowed] compile-flags: --target x86_64-unknown-linux-gnu
//[x86_64_allowed] check-pass
//[x86_64_allowed] needs-llvm-components: x86
2021-03-08 22:48:08 -06:00
//[arm] compile-flags: --target armv7-unknown-linux-gnueabihf
//[arm] build-fail
//[arm] needs-llvm-components: arm
// needs-asm-support
2021-03-08 22:48:08 -06:00
#![feature(no_core, lang_items, rustc_attrs)]
#![crate_type = "rlib"]
2021-03-08 22:48:08 -06:00
#![no_core]
2021-04-11 09:11:02 -05:00
#![cfg_attr(x86_64_allowed, allow(bad_asm_style))]
2021-03-08 22:48:08 -06:00
#[rustc_builtin_macro]
macro_rules! asm {
() => {};
}
2021-04-13 12:11:11 -05:00
#[rustc_builtin_macro]
macro_rules! global_asm {
() => {};
}
2021-03-08 22:48:08 -06:00
#[lang = "sized"]
trait Sized {}
pub fn main() {
unsafe {
asm!(".intel_syntax noprefix", "nop");
//[x86_64]~^ WARN avoid using `.intel_syntax`
//[arm]~^^ ERROR unknown directive
asm!(".intel_syntax aaa noprefix", "nop");
//[x86_64]~^ WARN avoid using `.intel_syntax`
//[arm]~^^ ERROR unknown directive
asm!(".att_syntax noprefix", "nop");
//[x86_64]~^ WARN avoid using `.att_syntax`
//[arm]~^^ ERROR unknown directive
asm!(".att_syntax bbb noprefix", "nop");
//[x86_64]~^ WARN avoid using `.att_syntax`
//[arm]~^^ ERROR unknown directive
asm!(".intel_syntax noprefix; nop");
//[x86_64]~^ WARN avoid using `.intel_syntax`
//[arm]~^^ ERROR unknown directive
asm!(
r"
.intel_syntax noprefix
nop"
);
//[x86_64]~^^^ WARN avoid using `.intel_syntax`
//[arm]~^^^^ ERROR unknown directive
}
}
2021-04-13 12:11:11 -05:00
global_asm!(".intel_syntax noprefix", "nop");
//[x86_64]~^ WARN avoid using `.intel_syntax`
// Assembler errors don't have line numbers, so no error on ARM