Skip to content

Commit 38ea690

Browse files
committed
fix extension for -Zdump-mir-dataflow graphviz files
1 parent 06bb836 commit 38ea690

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_mir_dataflow/src/framework

1 file changed

+1
-1
lines changed

compiler/rustc_mir_dataflow/src/framework/engine.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ where
285285
}
286286

287287
None if dump_enabled(tcx, A::NAME, def_id) => {
288-
create_dump_file(tcx, ".dot", false, A::NAME, &pass_name.unwrap_or("-----"), body)?
288+
create_dump_file(tcx, "dot", false, A::NAME, &pass_name.unwrap_or("-----"), body)?
289289
}
290290

291291
_ => return (Ok(()), results),

0 commit comments

Comments
 (0)