Struct rustc_ast::ast::LlvmInlineAsm [−][src]
pub struct LlvmInlineAsm {
pub asm: Symbol,
pub asm_str_style: StrStyle,
pub outputs: Vec<LlvmInlineAsmOutput>,
pub inputs: Vec<(Symbol, P<Expr>)>,
pub clobbers: Vec<Symbol>,
pub volatile: bool,
pub alignstack: bool,
pub dialect: LlvmAsmDialect,
}
Expand description
LLVM-style inline assembly.
E.g., llvm_asm!("NOP");
.
Fields
asm: Symbol
asm_str_style: StrStyle
outputs: Vec<LlvmInlineAsmOutput>
inputs: Vec<(Symbol, P<Expr>)>
clobbers: Vec<Symbol>
volatile: bool
alignstack: bool
dialect: LlvmAsmDialect
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for LlvmInlineAsm
impl !Send for LlvmInlineAsm
impl !Sync for LlvmInlineAsm
impl Unpin for LlvmInlineAsm
impl !UnwindSafe for LlvmInlineAsm
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 88 bytes