Trait rustc_codegen_ssa::traits::AsmBuilderMethods[][src]

pub trait AsmBuilderMethods<'tcx>: BackendTypes {
    fn codegen_llvm_inline_asm(
        &mut self,
        ia: &LlvmInlineAsmInner,
        outputs: Vec<PlaceRef<'tcx, Self::Value>>,
        inputs: Vec<Self::Value>,
        span: Span
    ) -> bool;
fn codegen_inline_asm(
        &mut self,
        template: &[InlineAsmTemplatePiece],
        operands: &[InlineAsmOperandRef<'tcx, Self>],
        options: InlineAsmOptions,
        line_spans: &[Span]
    ); }

Required methods

Take an inline assembly expression and splat it out via LLVM

Take an inline assembly expression and splat it out via LLVM

Implementors