2021-03-23 23:52:57 -05:00
|
|
|
warning: avoid using `.intel_syntax`, Intel syntax is the default
|
2022-03-19 10:50:24 -05:00
|
|
|
--> $DIR/inline-syntax.rs:58:14
|
2021-02-18 13:27:11 -06:00
|
|
|
|
|
2021-04-13 12:11:11 -05:00
|
|
|
LL | global_asm!(".intel_syntax noprefix", "nop");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
2021-03-23 23:52:57 -05:00
|
|
|
|
|
|
|
|
= note: `#[warn(bad_asm_style)]` on by default
|
2021-02-18 13:27:11 -06:00
|
|
|
|
2021-03-23 23:52:57 -05:00
|
|
|
warning: avoid using `.intel_syntax`, Intel syntax is the default
|
2022-03-19 10:50:24 -05:00
|
|
|
--> $DIR/inline-syntax.rs:32:15
|
2021-04-13 12:11:11 -05:00
|
|
|
|
|
|
|
|
LL | asm!(".intel_syntax noprefix", "nop");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
warning: avoid using `.intel_syntax`, Intel syntax is the default
|
2022-03-19 10:50:24 -05:00
|
|
|
--> $DIR/inline-syntax.rs:35:15
|
2021-02-18 13:27:11 -06:00
|
|
|
|
|
|
|
|
LL | asm!(".intel_syntax aaa noprefix", "nop");
|
2021-03-23 23:52:57 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2021-02-18 13:27:11 -06:00
|
|
|
|
2021-03-23 23:52:57 -05:00
|
|
|
warning: avoid using `.att_syntax`, prefer using `options(att_syntax)` instead
|
2022-03-19 10:50:24 -05:00
|
|
|
--> $DIR/inline-syntax.rs:38:15
|
2021-02-18 13:27:11 -06:00
|
|
|
|
|
|
|
|
LL | asm!(".att_syntax noprefix", "nop");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2021-03-23 23:52:57 -05:00
|
|
|
warning: avoid using `.att_syntax`, prefer using `options(att_syntax)` instead
|
2022-03-19 10:50:24 -05:00
|
|
|
--> $DIR/inline-syntax.rs:41:15
|
2021-02-18 13:27:11 -06:00
|
|
|
|
|
|
|
|
LL | asm!(".att_syntax bbb noprefix", "nop");
|
2021-02-20 00:17:18 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2021-03-23 23:52:57 -05:00
|
|
|
warning: avoid using `.intel_syntax`, Intel syntax is the default
|
2022-03-19 10:50:24 -05:00
|
|
|
--> $DIR/inline-syntax.rs:44:15
|
2021-02-20 00:17:18 -06:00
|
|
|
|
|
|
|
|
LL | asm!(".intel_syntax noprefix; nop");
|
2021-03-23 23:52:57 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
2021-02-20 00:17:18 -06:00
|
|
|
|
2021-03-23 23:52:57 -05:00
|
|
|
warning: avoid using `.intel_syntax`, Intel syntax is the default
|
2022-03-19 10:50:24 -05:00
|
|
|
--> $DIR/inline-syntax.rs:50:13
|
2021-02-20 00:17:18 -06:00
|
|
|
|
|
2021-03-23 23:52:57 -05:00
|
|
|
LL | .intel_syntax noprefix
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
2021-02-18 13:27:11 -06:00
|
|
|
|
2021-04-13 12:11:11 -05:00
|
|
|
warning: 7 warnings emitted
|
2021-02-18 13:27:11 -06:00
|
|
|
|