]> git.lizzy.rs Git - rust.git/blob - src/test/ui/asm/inline-syntax.x86_64.stderr
Auto merge of #98471 - wesleywiser:update_measureme, r=Mark-Simulacrum
[rust.git] / src / test / ui / asm / inline-syntax.x86_64.stderr
1 warning: avoid using `.intel_syntax`, Intel syntax is the default
2   --> $DIR/inline-syntax.rs:58:14
3    |
4 LL | global_asm!(".intel_syntax noprefix", "nop");
5    |              ^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: `#[warn(bad_asm_style)]` on by default
8
9 warning: avoid using `.intel_syntax`, Intel syntax is the default
10   --> $DIR/inline-syntax.rs:32:15
11    |
12 LL |         asm!(".intel_syntax noprefix", "nop");
13    |               ^^^^^^^^^^^^^^^^^^^^^^
14
15 warning: avoid using `.intel_syntax`, Intel syntax is the default
16   --> $DIR/inline-syntax.rs:35:15
17    |
18 LL |         asm!(".intel_syntax aaa noprefix", "nop");
19    |               ^^^^^^^^^^^^^^^^^^^^^^^^^^
20
21 warning: avoid using `.att_syntax`, prefer using `options(att_syntax)` instead
22   --> $DIR/inline-syntax.rs:38:15
23    |
24 LL |         asm!(".att_syntax noprefix", "nop");
25    |               ^^^^^^^^^^^^^^^^^^^^
26
27 warning: avoid using `.att_syntax`, prefer using `options(att_syntax)` instead
28   --> $DIR/inline-syntax.rs:41:15
29    |
30 LL |         asm!(".att_syntax bbb noprefix", "nop");
31    |               ^^^^^^^^^^^^^^^^^^^^^^^^
32
33 warning: avoid using `.intel_syntax`, Intel syntax is the default
34   --> $DIR/inline-syntax.rs:44:15
35    |
36 LL |         asm!(".intel_syntax noprefix; nop");
37    |               ^^^^^^^^^^^^^^^^^^^^^^
38
39 warning: avoid using `.intel_syntax`, Intel syntax is the default
40   --> $DIR/inline-syntax.rs:50:13
41    |
42 LL |             .intel_syntax noprefix
43    |             ^^^^^^^^^^^^^^^^^^^^^^
44
45 warning: 7 warnings emitted
46