diff options
| author | Florian Groult <florian.groult@univ-orleans.fr> | 2023-06-27 11:35:32 +0200 |
|---|---|---|
| committer | Florian Groult <florian.groult@univ-orleans.fr> | 2023-06-27 11:35:32 +0200 |
| commit | 3224ea44244d1a86dc4cd618ccaec2ea188ea230 (patch) | |
| tree | 11665ba46add9858bc88dc7c745f2129f2dcc72e /compiler/rustc_mir_dataflow/src/framework | |
| parent | b5e51db16dfbf5685e32dfe2d9a835a5c695afe4 (diff) | |
| download | rust-3224ea44244d1a86dc4cd618ccaec2ea188ea230.tar.gz rust-3224ea44244d1a86dc4cd618ccaec2ea188ea230.zip | |
Export AnalysisResults trait in rustc_mir_dataflow
Diffstat (limited to 'compiler/rustc_mir_dataflow/src/framework')
| -rw-r--r-- | compiler/rustc_mir_dataflow/src/framework/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_mir_dataflow/src/framework/mod.rs b/compiler/rustc_mir_dataflow/src/framework/mod.rs index e5e9c1507ba..58df9b9a768 100644 --- a/compiler/rustc_mir_dataflow/src/framework/mod.rs +++ b/compiler/rustc_mir_dataflow/src/framework/mod.rs @@ -45,7 +45,7 @@ pub mod graphviz; pub mod lattice; mod visitor; -pub use self::cursor::{ResultsClonedCursor, ResultsCursor, ResultsRefCursor}; +pub use self::cursor::{AnalysisResults, ResultsClonedCursor, ResultsCursor, ResultsRefCursor}; pub use self::direction::{Backward, Direction, Forward}; pub use self::engine::{Engine, EntrySets, Results, ResultsCloned}; pub use self::lattice::{JoinSemiLattice, MeetSemiLattice}; |
