about summary refs log tree commit diff
path: root/compiler/rustc_mir/src/monomorphize/partitioning/merging.rs
AgeCommit message (Collapse)AuthorLines
2021-09-07Move monomorphize code to its own crate.Camille GILLOT-111/+0
2021-07-25clippy:: append_instead_of_extendMatthias Krüger-1/+1
2020-09-16Rollup merge of #76694 - wesleywiser:partitioning_cx_trait, r=davidtwcoDylan DPC-8/+7
Introduce a PartitioningCx struct This contains all the data used by the partitioning algorithm and allows that data to be used at each stage of the partitioning. This is useful for other approaches to partitioning which may want different pieces of the data available at each step. cc @rust-lang/wg-incr-comp
2020-09-13Introduce a PartitioningCx structWesley Wiser-8/+7
2020-09-10use sort_unstable to sort primitive typesMatthias Krüger-1/+3
It's not important to retain original order if we have &[1, 1, 2, 3] for example. clippy::stable_sort_primitive
2020-08-30mv compiler to compiler/mark-0/+110