We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1ce0e6 commit 11bea26Copy full SHA for 11bea26
compiler/rustc_builtin_macros/src/asm.rs
@@ -16,13 +16,13 @@ use rustc_target::asm::InlineAsmArch;
16
use smallvec::smallvec;
17
18
pub struct AsmArgs {
19
- templates: Vec<P<ast::Expr>>,
20
- operands: Vec<(ast::InlineAsmOperand, Span)>,
+ pub templates: Vec<P<ast::Expr>>,
+ pub operands: Vec<(ast::InlineAsmOperand, Span)>,
21
named_args: FxHashMap<Symbol, usize>,
22
reg_args: FxHashSet<usize>,
23
- clobber_abis: Vec<(Symbol, Span)>,
+ pub clobber_abis: Vec<(Symbol, Span)>,
24
options: ast::InlineAsmOptions,
25
- options_spans: Vec<Span>,
+ pub options_spans: Vec<Span>,
26
}
27
28
fn parse_args<'a>(
0 commit comments