2024-08-17 14:38:10 -05:00
|
|
|
//@only-target: i686 x86_64
|
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 {
|
2024-02-16 13:02:19 -06:00
|
|
|
use std::arch::{asm, global_asm};
|
|
|
|
|
2020-10-09 05:45:29 -05:00
|
|
|
pub(super) unsafe fn use_asm() {
|
|
|
|
asm!("");
|
2023-07-28 14:35:48 -05:00
|
|
|
//~^ ERROR: Intel x86 assembly syntax used
|
2020-10-09 05:45:29 -05:00
|
|
|
asm!("", options());
|
2023-07-28 14:35:48 -05:00
|
|
|
//~^ ERROR: Intel x86 assembly syntax used
|
2020-10-09 05:45:29 -05:00
|
|
|
asm!("", options(nostack));
|
2023-07-28 14:35:48 -05:00
|
|
|
//~^ ERROR: Intel x86 assembly syntax used
|
2020-10-09 05:45:29 -05:00
|
|
|
asm!("", options(att_syntax));
|
|
|
|
asm!("", options(nostack, att_syntax));
|
|
|
|
}
|
2024-02-16 13:02:19 -06:00
|
|
|
|
|
|
|
global_asm!("");
|
|
|
|
//~^ ERROR: Intel x86 assembly syntax used
|
|
|
|
global_asm!("", options());
|
|
|
|
//~^ ERROR: Intel x86 assembly syntax used
|
|
|
|
global_asm!("", options(att_syntax));
|
2020-10-09 05:45:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[warn(clippy::inline_asm_x86_att_syntax)]
|
|
|
|
mod warn_att {
|
2024-02-16 13:02:19 -06:00
|
|
|
use std::arch::{asm, global_asm};
|
|
|
|
|
2020-10-09 05:45:29 -05:00
|
|
|
pub(super) unsafe fn use_asm() {
|
|
|
|
asm!("");
|
|
|
|
asm!("", options());
|
|
|
|
asm!("", options(nostack));
|
|
|
|
asm!("", options(att_syntax));
|
2023-07-28 14:35:48 -05:00
|
|
|
//~^ ERROR: AT&T x86 assembly syntax used
|
2020-10-09 05:45:29 -05:00
|
|
|
asm!("", options(nostack, att_syntax));
|
2023-07-28 14:35:48 -05:00
|
|
|
//~^ ERROR: AT&T x86 assembly syntax used
|
2020-10-09 05:45:29 -05:00
|
|
|
}
|
2024-02-16 13:02:19 -06:00
|
|
|
|
|
|
|
global_asm!("");
|
|
|
|
global_asm!("", options());
|
|
|
|
global_asm!("", options(att_syntax));
|
|
|
|
//~^ ERROR: AT&T x86 assembly syntax used
|
2020-10-09 05:45:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
unsafe {
|
|
|
|
warn_att::use_asm();
|
|
|
|
warn_intel::use_asm();
|
|
|
|
}
|
|
|
|
}
|