We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6032700 commit 422c330Copy full SHA for 422c330
compiler/rustc_mir_dataflow/src/framework/engine.rs
@@ -15,6 +15,7 @@ use rustc_hir::def_id::DefId;
15
use rustc_index::vec::{Idx, IndexVec};
16
use rustc_middle::mir::{self, traversal, BasicBlock};
17
use rustc_middle::mir::{create_dump_file, dump_enabled};
18
+use rustc_middle::ty::print::with_no_trimmed_paths;
19
use rustc_middle::ty::TyCtxt;
20
use rustc_span::symbol::{sym, Symbol};
21
@@ -285,7 +286,7 @@ where
285
286
if tcx.sess.opts.unstable_opts.graphviz_dark_mode {
287
render_opts.push(dot::RenderOption::DarkTheme);
288
}
- dot::render_opts(&graphviz, &mut buf, &render_opts)?;
289
+ with_no_trimmed_paths!(dot::render_opts(&graphviz, &mut buf, &render_opts)?);
290
291
file.write_all(&buf)?;
292
0 commit comments