Macro std::llvm_asm[][src]

macro_rules! llvm_asm {
    ("assembly template"
                        : $("output"(operand),)*
                        : $("input"(operand),)*
                        : $("clobbers",)*
                        : $("options",)*) => { ... };
}
🔬 This is a nightly-only experimental API. (llvm_asm #70173)

prefer using the new asm! syntax instead

Expand description

LLVM 样式的内联汇编。

请阅读 unstable book 的用法。