### What it does Checks for usage of AT&T x86 assembly syntax. ### Why is this bad? The lint has been enabled to indicate a preference for Intel x86 assembly syntax. ### Example ``` asm!("lea ({}), {}", in(reg) ptr, lateout(reg) _, options(att_syntax)); ``` Use instead: ``` asm!("lea {}, [{}]", lateout(reg) _, in(reg) ptr); ```