Skip to content

Commit f5eb296

Browse files
authored
Rollup merge of rust-lang#138280 - folkertdev:mir-dump-asm-const, r=compiler-errors
fix ICE in pretty-printing `global_asm!` fixes rust-lang#138260 since rust-lang#137180, `global_asm!` gets a fake body, that the pretty printing logic did not know what to do with. based on [#t-compiler/help > tests for MIR pretty printing](https://rust-lang.zulipchat.com/#narrow/channel/182449-t-compiler.2Fhelp/topic/tests.20for.20MIR.20pretty.20printing) I created `tests/ui/unpretty/mir` which seemed as good a place as any for a test. If there is a better place, let me know. try-job: test-various try-job: x86_64-apple-2
2 parents 2d7a592 + 9213cb8 commit f5eb296

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

compiler/rustc_middle/src/mir/pretty.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,10 @@ fn write_mir_sig(tcx: TyCtxt<'_>, body: &Body<'_>, w: &mut dyn io::Write) -> io:
653653
write!(w, "static mut ")?
654654
}
655655
(_, _) if is_function => write!(w, "fn ")?,
656-
(DefKind::AnonConst | DefKind::InlineConst, _) => {} // things like anon const, not an item
656+
// things like anon const, not an item
657+
(DefKind::AnonConst | DefKind::InlineConst, _) => {}
658+
// `global_asm!` have fake bodies, which we may dump after mir-build
659+
(DefKind::GlobalAsm, _) => {}
657660
_ => bug!("Unexpected def kind {:?}", kind),
658661
}
659662

tests/mir-opt/global_asm.rs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// skip-filecheck
2+
//@ needs-asm-support
3+
4+
// `global_asm!` gets a fake body, make sure it is handled correctly
5+
6+
// EMIT_MIR global_asm.{global_asm#0}.SimplifyLocals-final.after.mir
7+
core::arch::global_asm!("/* */");
8+
9+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// MIR for `{global_asm#0}` after SimplifyLocals-final
2+
3+
{global_asm#0}: ! = {
4+
let mut _0: !;
5+
6+
bb0: {
7+
asm!("/* */", options()) -> unwind unreachable;
8+
}
9+
}

0 commit comments

Comments
 (0)