summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/asm_syntax.stderr
blob: 9c7c3ba7d87e67d6763f3c37a6109449f1b8fff8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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`

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));
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use Intel x86 assembly syntax
   = note: `-D clippy::inline-asm-x86-att-syntax` implied by `-D warnings`

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