Make asm a named field
This commit is contained in:
parent
794c12416b
commit
2a6daaf89a
23 changed files with 30 additions and 28 deletions
|
@ -251,7 +251,9 @@ impl<'hir> LoweringContext<'_, 'hir> {
|
|||
.arena
|
||||
.alloc_from_iter(fm.items.iter().map(|x| self.lower_foreign_item_ref(x))),
|
||||
},
|
||||
ItemKind::GlobalAsm(asm) => hir::ItemKind::GlobalAsm(self.lower_inline_asm(span, asm)),
|
||||
ItemKind::GlobalAsm(asm) => {
|
||||
hir::ItemKind::GlobalAsm { asm: self.lower_inline_asm(span, asm) }
|
||||
}
|
||||
ItemKind::TyAlias(box TyAlias { generics, where_clauses, ty, .. }) => {
|
||||
// We lower
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue