summary refs log tree commit diff
path: root/compiler/rustc_mir_dataflow/src/lib.rs
AgeCommit message (Collapse)AuthorLines
2021-10-23update cfg(bootstrap)Pietro Albini-1/+0
2021-10-16Adopt let_else across the compilerest31-0/+1
This performs a substitution of code following the pattern: let <id> = if let <pat> = ... { identity } else { ... : ! }; To simplify it to: let <pat> = ... { identity } else { ... : ! }; By adopting the let_else feature.
2021-10-04Stabilize `const_panic`Jacob Pratt-1/+1
2021-09-15Make rustc_mir_dataflow::framework::graphviz and ↵Will Crichton-2/+2
rustc_mir_transform::MirPass public
2021-09-08Rebase fallout.Camille GILLOT-0/+1
2021-09-07Move the dataflow framework to its own crate.Camille GILLOT-0/+71