|
| 1 | +error: Intel x86 assembly syntax used |
| 2 | + --> tests/ui/asm_syntax_x86.rs:8:9 |
| 3 | + | |
| 4 | +LL | asm!(""); |
| 5 | + | ^^^^^^^^ |
| 6 | + | |
| 7 | + = help: use AT&T x86 assembly syntax |
| 8 | + = note: `-D clippy::inline-asm-x86-intel-syntax` implied by `-D warnings` |
| 9 | + = help: to override `-D warnings` add `#[allow(clippy::inline_asm_x86_intel_syntax)]` |
| 10 | + |
| 11 | +error: Intel x86 assembly syntax used |
| 12 | + --> tests/ui/asm_syntax_x86.rs:10:9 |
| 13 | + | |
| 14 | +LL | asm!("", options()); |
| 15 | + | ^^^^^^^^^^^^^^^^^^^ |
| 16 | + | |
| 17 | + = help: use AT&T x86 assembly syntax |
| 18 | + |
| 19 | +error: Intel x86 assembly syntax used |
| 20 | + --> tests/ui/asm_syntax_x86.rs:12:9 |
| 21 | + | |
| 22 | +LL | asm!("", options(nostack)); |
| 23 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 24 | + | |
| 25 | + = help: use AT&T x86 assembly syntax |
| 26 | + |
| 27 | +error: Intel x86 assembly syntax used |
| 28 | + --> tests/ui/asm_syntax_x86.rs:18:5 |
| 29 | + | |
| 30 | +LL | global_asm!(""); |
| 31 | + | ^^^^^^^^^^^^^^^ |
| 32 | + | |
| 33 | + = help: use AT&T x86 assembly syntax |
| 34 | + |
| 35 | +error: Intel x86 assembly syntax used |
| 36 | + --> tests/ui/asm_syntax_x86.rs:20:5 |
| 37 | + | |
| 38 | +LL | global_asm!("", options()); |
| 39 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 40 | + | |
| 41 | + = help: use AT&T x86 assembly syntax |
| 42 | + |
| 43 | +error: AT&T x86 assembly syntax used |
| 44 | + --> tests/ui/asm_syntax_x86.rs:33:9 |
| 45 | + | |
| 46 | +LL | asm!("", options(att_syntax)); |
| 47 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 48 | + | |
| 49 | + = help: use Intel x86 assembly syntax |
| 50 | + = note: `-D clippy::inline-asm-x86-att-syntax` implied by `-D warnings` |
| 51 | + = help: to override `-D warnings` add `#[allow(clippy::inline_asm_x86_att_syntax)]` |
| 52 | + |
| 53 | +error: AT&T x86 assembly syntax used |
| 54 | + --> tests/ui/asm_syntax_x86.rs:35:9 |
| 55 | + | |
| 56 | +LL | asm!("", options(nostack, att_syntax)); |
| 57 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 58 | + | |
| 59 | + = help: use Intel x86 assembly syntax |
| 60 | + |
| 61 | +error: AT&T x86 assembly syntax used |
| 62 | + --> tests/ui/asm_syntax_x86.rs:41:5 |
| 63 | + | |
| 64 | +LL | global_asm!("", options(att_syntax)); |
| 65 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 66 | + | |
| 67 | + = help: use Intel x86 assembly syntax |
| 68 | + |
| 69 | +error: aborting due to 8 previous errors |
| 70 | + |
0 commit comments