]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/asm_syntax.stderr
Auto merge of #84620 - Dylan-DPC:rollup-wkv97im, r=Dylan-DPC
[rust.git] / src / tools / clippy / tests / ui / asm_syntax.stderr
1 error: Intel x86 assembly syntax used
2   --> $DIR/asm_syntax.rs:9:9
3    |
4 LL |         asm!("");
5    |         ^^^^^^^^^
6    |
7    = note: `-D clippy::inline-asm-x86-intel-syntax` implied by `-D warnings`
8    = help: use AT&T x86 assembly syntax
9
10 error: Intel x86 assembly syntax used
11   --> $DIR/asm_syntax.rs:10:9
12    |
13 LL |         asm!("", options());
14    |         ^^^^^^^^^^^^^^^^^^^^
15    |
16    = help: use AT&T x86 assembly syntax
17
18 error: Intel x86 assembly syntax used
19   --> $DIR/asm_syntax.rs:11:9
20    |
21 LL |         asm!("", options(nostack));
22    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
23    |
24    = help: use AT&T x86 assembly syntax
25
26 error: AT&T x86 assembly syntax used
27   --> $DIR/asm_syntax.rs:23:9
28    |
29 LL |         asm!("", options(att_syntax));
30    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31    |
32    = note: `-D clippy::inline-asm-x86-att-syntax` implied by `-D warnings`
33    = help: use Intel x86 assembly syntax
34
35 error: AT&T x86 assembly syntax used
36   --> $DIR/asm_syntax.rs:24:9
37    |
38 LL |         asm!("", options(nostack, att_syntax));
39    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
40    |
41    = help: use Intel x86 assembly syntax
42
43 error: aborting due to 5 previous errors
44