For example: ```rust #[cfg(target_arch = "x86")] fn foo() { unsafe { asm!("0: jmp 0b") }; } ``` This currently raises `binary_asm_labels` only if targeting x86. Ideally we would be able to raise the lint regardless of what the current target is. Requested in https://github.com/rust-lang/rust/issues/127821 and https://github.com/rust-lang/rust/pull/127935