Rollup merge of #30771 - tsion:mir-text-terminator-fix, r=eddyb
This just removes the `Some()` that appeared around terminators in MIR text output after https://github.com/rust-lang/rust/pull/30481 (cc @nagisa). The graphviz is already fixed. r? @eddyb
This commit is contained in:
commit
c0983cd67e
@ -39,7 +39,7 @@ fn write_basic_block<W: Write>(block: BasicBlock, mir: &Mir, w: &mut W) -> io::R
|
||||
}
|
||||
|
||||
// Terminator at the bottom.
|
||||
try!(writeln!(w, "{0}{0}{1:?};", INDENT, data.terminator));
|
||||
try!(writeln!(w, "{0}{0}{1:?};", INDENT, data.terminator()));
|
||||
|
||||
writeln!(w, "{}}}", INDENT)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user