Skip to content

Commit 4ddedf7

Browse files
committed
Add warning about volatility of MIR output
1 parent 9218f97 commit 4ddedf7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/librustc_mir/util/pretty.rs

+3
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ pub fn write_mir_pretty<'a, 'b, 'tcx, I>(tcx: TyCtxt<'b, 'tcx, 'tcx>,
9191
-> io::Result<()>
9292
where I: Iterator<Item=DefId>, 'tcx: 'a
9393
{
94+
writeln!(w, "// WARNING: This output format is intended for human consumers only")?;
95+
writeln!(w, "// and is subject to change without notice. Knock yourself out.")?;
96+
9497
let mut first = true;
9598
for def_id in iter.filter(DefId::is_local) {
9699
let mir = &tcx.item_mir(def_id);

0 commit comments

Comments
 (0)