blob: 86a881bfbd18a8f201d2e532dfb0522e0763fc7b [file] [log] [blame]
#![feature(llvm_asm)]
// pp-exact
pub fn main() {
unsafe {
llvm_asm!("" : : : : "volatile");
llvm_asm!("" : : : : "alignstack");
llvm_asm!("" : : : : "intel");
}
}