Skip to content

Commit a3dda51

Browse files
authored
Rollup merge of #101369 - compiler-errors:global-asm-pprint, r=jackh726
Fix `global_asm` macro pretty printing Fixes #101051 Fixes #101047
2 parents 037c979 + e9b01c7 commit a3dda51

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

compiler/rustc_ast_pretty/src/pprust/state/item.rs

+2
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,8 @@ impl<'a> State<'a> {
218218
ast::ItemKind::GlobalAsm(ref asm) => {
219219
self.head(visibility_qualified(&item.vis, "global_asm!"));
220220
self.print_inline_asm(asm);
221+
self.word(";");
222+
self.end();
221223
self.end();
222224
}
223225
ast::ItemKind::TyAlias(box ast::TyAlias {

src/test/ui/asm/unpretty-expanded.rs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// check-pass
2+
// compile-flags: -Zunpretty=expanded
3+
core::arch::global_asm!("x: .byte 42");
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#![feature(prelude_import)]
2+
#![no_std]
3+
#[prelude_import]
4+
use ::std::prelude::rust_2015::*;
5+
#[macro_use]
6+
extern crate std;
7+
// check-pass
8+
// compile-flags: -Zunpretty=expanded
9+
global_asm! ("x: .byte 42");

0 commit comments

Comments
 (0)