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

// pp-exact

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