We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6faa82b commit 7aa8946Copy full SHA for 7aa8946
src/librustc_ast_lowering/expr.rs
@@ -976,7 +976,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
976
fn lower_expr_asm(&mut self, sp: Span, asm: &InlineAsm) -> hir::ExprKind<'hir> {
977
if self.sess.asm_arch.is_none() {
978
struct_span_err!(self.sess, sp, E0472, "asm! is unsupported on this target").emit();
979
- };
+ }
980
if asm.options.contains(InlineAsmOptions::ATT_SYNTAX)
981
&& !matches!(
982
self.sess.asm_arch,
0 commit comments