]> git.lizzy.rs Git - rust.git/blob - src/test/pretty/asm-options.rs
rustc: Allow cdylibs to link against dylibs
[rust.git] / src / test / pretty / asm-options.rs
1 #![feature(asm)]
2
3 // pp-exact
4
5 pub fn main() {
6     unsafe {
7         asm!("" : : : : "volatile");
8         asm!("" : : : : "alignstack");
9         asm!("" : : : : "intel");
10     }
11 }