mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
46 lines
1.3 KiB
Text
46 lines
1.3 KiB
Text
error: Intel x86 assembly syntax used
|
|
--> $DIR/asm_syntax.rs:8:9
|
|
|
|
|
LL | asm!("");
|
|
| ^^^^^^^^
|
|
|
|
|
= help: use AT&T x86 assembly syntax
|
|
= note: `-D clippy::inline-asm-x86-intel-syntax` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::inline_asm_x86_intel_syntax)]`
|
|
|
|
error: Intel x86 assembly syntax used
|
|
--> $DIR/asm_syntax.rs:10:9
|
|
|
|
|
LL | asm!("", options());
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use AT&T x86 assembly syntax
|
|
|
|
error: Intel x86 assembly syntax used
|
|
--> $DIR/asm_syntax.rs:12:9
|
|
|
|
|
LL | asm!("", options(nostack));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use AT&T x86 assembly syntax
|
|
|
|
error: AT&T x86 assembly syntax used
|
|
--> $DIR/asm_syntax.rs:26:9
|
|
|
|
|
LL | asm!("", options(att_syntax));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use Intel x86 assembly syntax
|
|
= note: `-D clippy::inline-asm-x86-att-syntax` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::inline_asm_x86_att_syntax)]`
|
|
|
|
error: AT&T x86 assembly syntax used
|
|
--> $DIR/asm_syntax.rs:28:9
|
|
|
|
|
LL | asm!("", options(nostack, att_syntax));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use Intel x86 assembly syntax
|
|
|
|
error: aborting due to 5 previous errors
|
|
|