about summary refs log tree commit diff
path: root/tests/mir-opt/basic_assignment.main.ElaborateDrops.diff
AgeCommit message (Collapse)AuthorLines
2024-08-18Bless *all* the mir-opt testsScott McMurray-1/+1
2023-08-24make MIR less verboseRalf Jung-3/+3
2023-08-24when terminating during unwinding, show the reason whyRalf Jung-3/+3
2023-08-16Do not pre-compute reachable blocks.Camille GILLOT-2/+4
2023-08-16Only run MaybeInitializedPlaces once for drop elaboration.Camille GILLOT-4/+0
2023-06-23Bless testsGary Guo-1/+1
2023-06-15Remove comments from mir-opt MIR dumpsBen Kimock-45/+45
2023-04-06Bless testsGary Guo-3/+7
2023-03-03Desugars drop and replace at MIR buildGiacomo Pasini-0/+85
This commit desugars the drop and replace deriving from an assignment at MIR build, avoiding the construction of the DropAndReplace terminator (which will be removed in a followign PR) In order to retain the same error messages for replaces a new DesugaringKind::Replace variant is introduced.