summary refs log tree commit diff
path: root/src/test/pretty/asm-options.rs
blob: 5c2bbd9edd931a9fc5d41073f7d80a61fc128ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![feature(asm)]

// pp-exact

pub fn main() {
    unsafe {
        asm!("" : : : : "volatile");
        asm!("" : : : : "alignstack");
        asm!("" : : : : "intel");
    }
}