summary refs log tree commit diff
path: root/src/librustc_data_structures/graph/tests.rs
AgeCommit message (Collapse)AuthorLines
2017-08-19rustc: Remove some dead codeVadim Petrochenkov-81/+0
2017-08-07rustc::middle::dataflow - visit the CFG in RPOAriel Ben-Yehuda-0/+43
We used to propagate bits in node-id order, which sometimes caused an excessive number of iterations, especially when macros were present. As everyone knows, visiting the CFG in RPO bounds the number of iterators by 1 plus the depth of the most deeply nested loop (times the height of the lattice, which is 1). Fixes #43704.
2016-12-15Warn unused type aliasesSeo Sanghyeon-2/+0
2016-11-02Added Graph::is_cyclicic_node algorithmHavvy-4/+42
2016-03-05apply rustfmt to librustc_data_structures, correcting ↵Niko Matsakis-19/+21
rust-lang-nursery/rustfmt#836
2015-04-24Change name of unit test sub-module to "tests".Johannes Oertel-0/+139
Changes the style guidelines regarding unit tests to recommend using a sub-module named "tests" instead of "test" for unit tests as "test" might clash with imports of libtest.