about summary refs log tree commit diff
path: root/compiler/rustc_mir_dataflow/src/lib.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2023-11-22 10:25:52 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2023-11-23 14:06:57 +1100
commitc16d3f32a489ef92e7812445ecf6dd6d5070439d (patch)
treedcbbbbcf737e93b42dd5d7148e0aa4b7a04980de /compiler/rustc_mir_dataflow/src/lib.rs
parentca741945f401d05d9fa2b7a535e1be7da03a5887 (diff)
downloadrust-c16d3f32a489ef92e7812445ecf6dd6d5070439d.tar.gz
rust-c16d3f32a489ef92e7812445ecf6dd6d5070439d.zip
Avoid unnecessary exports.
Diffstat (limited to 'compiler/rustc_mir_dataflow/src/lib.rs')
-rw-r--r--compiler/rustc_mir_dataflow/src/lib.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler/rustc_mir_dataflow/src/lib.rs b/compiler/rustc_mir_dataflow/src/lib.rs
index cb871ca8d5d..81149793c5a 100644
--- a/compiler/rustc_mir_dataflow/src/lib.rs
+++ b/compiler/rustc_mir_dataflow/src/lib.rs
@@ -22,12 +22,12 @@ pub use self::drop_flag_effects::{
     move_path_children_matching, on_all_children_bits, on_lookup_result_bits,
 };
 pub use self::framework::{
-    fmt, graphviz, lattice, visit_results, Analysis, AnalysisDomain, AnalysisResults, Backward,
-    CloneAnalysis, Direction, Engine, Forward, GenKill, GenKillAnalysis, JoinSemiLattice,
-    MaybeReachable, Results, ResultsCloned, ResultsClonedCursor, ResultsCursor, ResultsRefCursor,
-    ResultsVisitable, ResultsVisitor, SwitchIntEdgeEffects,
+    fmt, lattice, visit_results, Analysis, AnalysisDomain, Direction, GenKill, GenKillAnalysis,
+    JoinSemiLattice, MaybeReachable, Results, ResultsCursor, ResultsVisitable, ResultsVisitor,
+};
+use self::framework::{
+    Backward, CloneAnalysis, Forward, ResultsClonedCursor, SwitchIntEdgeEffects,
 };
-
 use self::move_paths::MoveData;
 
 pub mod debuginfo;