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