mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
44 lines
1.1 KiB
Text
44 lines
1.1 KiB
Text
error: Intel x86 assembly syntax used
|
|
--> $DIR/asm_syntax.rs:8:9
|
|
|
|
|
LL | asm!("");
|
|
| ^^^^^^^^
|
|
|
|
|
= note: `-D clippy::inline-asm-x86-intel-syntax` implied by `-D warnings`
|
|
= help: use AT&T x86 assembly syntax
|
|
|
|
error: Intel x86 assembly syntax used
|
|
--> $DIR/asm_syntax.rs:9:9
|
|
|
|
|
LL | asm!("", options());
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use AT&T x86 assembly syntax
|
|
|
|
error: Intel x86 assembly syntax used
|
|
--> $DIR/asm_syntax.rs:10:9
|
|
|
|
|
LL | asm!("", options(nostack));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use AT&T x86 assembly syntax
|
|
|
|
error: AT&T x86 assembly syntax used
|
|
--> $DIR/asm_syntax.rs:23:9
|
|
|
|
|
LL | asm!("", options(att_syntax));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::inline-asm-x86-att-syntax` implied by `-D warnings`
|
|
= help: use Intel x86 assembly syntax
|
|
|
|
error: AT&T x86 assembly syntax used
|
|
--> $DIR/asm_syntax.rs:24:9
|
|
|
|
|
LL | asm!("", options(nostack, att_syntax));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use Intel x86 assembly syntax
|
|
|
|
error: aborting due to 5 previous errors
|
|
|