diff --git a/compiler/rustc_builtin_macros/src/asm.rs b/compiler/rustc_builtin_macros/src/asm.rs index 1a93b9be99e..caf8ac77df1 100644 --- a/compiler/rustc_builtin_macros/src/asm.rs +++ b/compiler/rustc_builtin_macros/src/asm.rs @@ -16,13 +16,13 @@ use rustc_target::asm::InlineAsmArch; use smallvec::smallvec; pub struct AsmArgs { - templates: Vec
>, - operands: Vec<(ast::InlineAsmOperand, Span)>, + pub templates: Vec
>,
+ pub operands: Vec<(ast::InlineAsmOperand, Span)>,
named_args: FxHashMap