rust/src/test/ui/asm/rustfix-asm.rs
2021-08-15 13:27:13 +01:00

17 lines
395 B
Rust

// run-rustfix
// only-x86_64
#![feature(asm, llvm_asm)]
#![allow(deprecated)] // llvm_asm!
fn main() {
unsafe {
let x = 1;
let y: i32;
asm!("" :: "r" (x));
//~^ ERROR the legacy LLVM-style asm! syntax is no longer supported
asm!("" : "=r" (y));
//~^ ERROR the legacy LLVM-style asm! syntax is no longer supported
let _ = y;
}
}