Remove extra newlines in MIR dump

This commit is contained in:
Seo Sanghyeon 2016-07-14 05:29:50 +09:00
parent 4a12a70a5c
commit b91acc9f2a

View File

@ -195,7 +195,7 @@ fn write_basic_block(tcx: TyCtxt,
ALIGN,
comment(tcx, data.terminator().source_info))?;
writeln!(w, "{}}}\n", INDENT)
writeln!(w, "{}}}", INDENT)
}
fn comment(tcx: TyCtxt, SourceInfo { span, scope }: SourceInfo) -> String {