2020-10-09 10:45:29 +00:00
|
|
|
error: Intel x86 assembly syntax used
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/asm_syntax_x86.rs:10:9
|
2020-10-09 10:45:29 +00:00
|
|
|
|
|
|
|
|
LL | asm!("");
|
2021-10-14 18:28:30 +00:00
|
|
|
| ^^^^^^^^
|
2020-10-09 10:45:29 +00:00
|
|
|
|
|
|
|
|
= help: use AT&T x86 assembly syntax
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::inline-asm-x86-intel-syntax` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::inline_asm_x86_intel_syntax)]`
|
2020-10-09 10:45:29 +00:00
|
|
|
|
|
|
|
error: Intel x86 assembly syntax used
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/asm_syntax_x86.rs:12:9
|
2020-10-09 10:45:29 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", options());
|
2021-10-14 18:28:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2020-10-09 10:45:29 +00:00
|
|
|
|
|
|
|
|
= help: use AT&T x86 assembly syntax
|
|
|
|
|
|
|
|
error: Intel x86 assembly syntax used
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/asm_syntax_x86.rs:14:9
|
2020-10-09 10:45:29 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", options(nostack));
|
2021-10-14 18:28:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-10-09 10:45:29 +00:00
|
|
|
|
|
|
|
|
= help: use AT&T x86 assembly syntax
|
|
|
|
|
2024-02-16 19:02:19 +00:00
|
|
|
error: Intel x86 assembly syntax used
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/asm_syntax_x86.rs:20:5
|
2024-02-16 19:02:19 +00:00
|
|
|
|
|
|
|
|
LL | global_asm!("");
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: use AT&T x86 assembly syntax
|
|
|
|
|
|
|
|
error: Intel x86 assembly syntax used
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/asm_syntax_x86.rs:22:5
|
2024-02-16 19:02:19 +00:00
|
|
|
|
|
|
|
|
LL | global_asm!("", options());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: use AT&T x86 assembly syntax
|
|
|
|
|
2020-10-09 10:45:29 +00:00
|
|
|
error: AT&T x86 assembly syntax used
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/asm_syntax_x86.rs:35:9
|
2020-10-09 10:45:29 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", options(att_syntax));
|
2021-10-14 18:28:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-10-09 10:45:29 +00:00
|
|
|
|
|
|
|
|
= help: use Intel x86 assembly syntax
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::inline-asm-x86-att-syntax` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::inline_asm_x86_att_syntax)]`
|
2020-10-09 10:45:29 +00:00
|
|
|
|
|
|
|
error: AT&T x86 assembly syntax used
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/asm_syntax_x86.rs:37:9
|
2020-10-09 10:45:29 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", options(nostack, att_syntax));
|
2021-10-14 18:28:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-10-09 10:45:29 +00:00
|
|
|
|
|
|
|
|
= help: use Intel x86 assembly syntax
|
|
|
|
|
2024-02-16 19:02:19 +00:00
|
|
|
error: AT&T x86 assembly syntax used
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/asm_syntax_x86.rs:43:5
|
2024-02-16 19:02:19 +00:00
|
|
|
|
|
|
|
|
LL | global_asm!("", options(att_syntax));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: use Intel x86 assembly syntax
|
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
2020-10-09 10:45:29 +00:00
|
|
|
|