Skip to content

Commit 05ae666

Browse files
committed
Move default inline asm dialect to Session
1 parent 39dcd01 commit 05ae666

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

compiler/rustc_builtin_macros/src/asm.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ use rustc_span::{
1212
BytePos,
1313
};
1414
use rustc_span::{InnerSpan, Span};
15-
use rustc_target::asm::InlineAsmArch;
1615

1716
struct AsmArgs {
1817
templates: Vec<P<ast::Expr>>,
@@ -403,6 +402,8 @@ fn expand_preparsed_asm(ecx: &mut ExtCtxt<'_>, sp: Span, args: AsmArgs) -> P<ast
403402
let mut line_spans = Vec::with_capacity(args.templates.len());
404403
let mut curarg = 0;
405404

405+
let default_dialect = ecx.sess.inline_asm_dialect();
406+
406407
for template_expr in args.templates.into_iter() {
407408
if !template.is_empty() {
408409
template.push(ast::InlineAsmTemplatePiece::String("\n".to_string()));
@@ -430,11 +431,6 @@ fn expand_preparsed_asm(ecx: &mut ExtCtxt<'_>, sp: Span, args: AsmArgs) -> P<ast
430431
let template_snippet = ecx.source_map().span_to_snippet(template_sp).ok();
431432

432433
if let Some(snippet) = &template_snippet {
433-
let default_dialect = match ecx.sess.asm_arch {
434-
Some(InlineAsmArch::X86 | InlineAsmArch::X86_64) => ast::LlvmAsmDialect::Intel,
435-
_ => ast::LlvmAsmDialect::Att,
436-
};
437-
438434
let snippet = snippet.trim_matches('"');
439435
match default_dialect {
440436
ast::LlvmAsmDialect::Intel => {

compiler/rustc_session/src/session.rs

+7
Original file line numberDiff line numberDiff line change
@@ -784,6 +784,13 @@ impl Session {
784784
}
785785
}
786786

787+
pub fn inline_asm_dialect(&self) -> rustc_ast::LlvmAsmDialect {
788+
match self.asm_arch {
789+
Some(InlineAsmArch::X86 | InlineAsmArch::X86_64) => rustc_ast::LlvmAsmDialect::Intel,
790+
_ => rustc_ast::LlvmAsmDialect::Att,
791+
}
792+
}
793+
787794
pub fn relocation_model(&self) -> RelocModel {
788795
self.opts.cg.relocation_model.unwrap_or(self.target.relocation_model)
789796
}

0 commit comments

Comments
 (0)