2023-04-20 10:19:36 -05:00
|
|
|
//@only-target-x86_64
|
|
|
|
//@ignore-target-aarch64
|
2021-04-22 04:31:13 -05:00
|
|
|
|
2020-10-09 05:45:29 -05:00
|
|
|
#[warn(clippy::inline_asm_x86_intel_syntax)]
|
|
|
|
mod warn_intel {
|
|
|
|
pub(super) unsafe fn use_asm() {
|
2021-12-12 18:00:51 -06:00
|
|
|
use std::arch::asm;
|
2020-10-09 05:45:29 -05:00
|
|
|
asm!("");
|
|
|
|
asm!("", options());
|
|
|
|
asm!("", options(nostack));
|
|
|
|
asm!("", options(att_syntax));
|
|
|
|
asm!("", options(nostack, att_syntax));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[warn(clippy::inline_asm_x86_att_syntax)]
|
|
|
|
mod warn_att {
|
|
|
|
pub(super) unsafe fn use_asm() {
|
2021-12-12 18:00:51 -06:00
|
|
|
use std::arch::asm;
|
2020-10-09 05:45:29 -05:00
|
|
|
asm!("");
|
|
|
|
asm!("", options());
|
|
|
|
asm!("", options(nostack));
|
|
|
|
asm!("", options(att_syntax));
|
|
|
|
asm!("", options(nostack, att_syntax));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-22 04:31:13 -05:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2020-10-09 05:45:29 -05:00
|
|
|
fn main() {
|
|
|
|
unsafe {
|
|
|
|
warn_att::use_asm();
|
|
|
|
warn_intel::use_asm();
|
|
|
|
}
|
|
|
|
}
|