summaryrefslogtreecommitdiff
path: root/src/tools/clippy/tests/ui/asm_syntax_not_x86.rs
blob: 33cea4806814bb4445c18830de2d5181662d0801 (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
//@ignore-target-i686
//@ignore-target-x86
//@needs-asm-support

#[warn(clippy::inline_asm_x86_intel_syntax)]
#[warn(clippy::inline_asm_x86_att_syntax)]
mod dont_warn {
    use std::arch::{asm, global_asm};

    pub(super) unsafe fn use_asm() {
        asm!("");
        asm!("", options());
        asm!("", options(nostack));
    }

    global_asm!("");
    global_asm!("", options());
}

fn main() {
    unsafe {
        dont_warn::use_asm();
    }
}