about summary refs log tree commit diff
path: root/src/test/mir-opt/loop_test.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-17/+0
2020-08-18mir building: fix some commentsRalf Jung-1/+1
2020-07-29add crate name to mir dumpsXavier Denis-1/+1
2020-04-07--bless all mir-opt tests.Ana-Maria Mihalache-28/+1
2019-07-07Only omit StorageLive/Dead for variable that are never initializedMatthew Jasper-0/+1
With `feature(never_type)`, it's not guaranteed that any variable with type `!` isn't ever assigned to.
2019-06-25Use `as_temp` to evaluate statement expressionsMatthew Jasper-0/+1
2019-06-13Create fewer basic blocks in match MIR loweringMatthew Jasper-6/+7
2019-05-10Adjust mir-opt tests for new HIR without IfMazdak Farrokhzad-10/+11
2019-03-03Check which blocks are cleanup in mir-opt testsMatthew Jasper-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-11-18Remove mir::StatementKind::EndRegionMatthew Jasper-1/+1
Since lexical MIR borrow check is gone, and validation no longer uses these, they can be removed.
2018-09-18Update mir-opt test suiteRémy Rakic-0/+1
2018-02-07Fix tests for MIR loop loweringbobtwinkles-0/+49
Fixes the hash test to recognize that MirValidated can change when changing around labels, and add a new test that makes sure we're lowering loop statements correctly.