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