]> git.lizzy.rs Git - rust.git/blob - src/test/pretty/llvm-asm-options.rs
Rollup merge of #73963 - hellow554:unsafe_path, r=Mark-Simulacrum
[rust.git] / src / test / pretty / llvm-asm-options.rs
1 #![feature(llvm_asm)]
2
3 // pp-exact
4
5 pub fn main() {
6     unsafe {
7         llvm_asm!("" : : : : "volatile");
8         llvm_asm!("" : : : : "alignstack");
9         llvm_asm!("" : : : : "intel");
10     }
11 }