about summary refs log tree commit diff
path: root/src/test/mir-opt/const_prop/discriminant.main.ConstProp.64bit.diff
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-52/+0
2022-12-09Remove unneeded field from `SwitchTargets`Jakob Degen-3/+3
2022-08-12make some const prop tests unit-testNilstrieb-1/+1
2022-07-28bless mir opt testsNilstrieb-27/+27
2022-06-10Actually fixXavier Denis-1/+1
2022-06-10Revert "More minimal changes"Xavier Denis-9/+11
This reverts commit fe0dedcb06947317d41a8570b7fff7f8690dcbff.
2022-06-10More minimal changesXavier Denis-11/+9
2022-06-10Fix `SourceScope` for `if let` bindings.Xavier Denis-9/+11
2022-04-11Fix tests broken by deaggregation changeJakob Degen-0/+1
2021-09-01Fix drop handling for `if let` expressionsMatthew Jasper-6/+6
MIR lowering for `if let` expressions is now more complicated now that `if let` exists in HIR. This PR adds a scope for the variables bound in an `if let` expression and then uses an approach similar to how we handle loops to ensure that we reliably drop the correct variables.
2021-08-25Fix debugger stepping behavior around `match` expressionsWesley Wiser-1/+1
Previously, we would set up the source lines for `match` expressions so that the code generated to perform the test of the scrutinee was matched to the line of the arm that required the test and then jump from the arm block to the "next" block was matched to all of the lines in the `match` expression. While that makes sense, it has the side effect of causing strange stepping behavior in debuggers. I've changed the source information so that all of the generated tests are sourced to `match {scrutinee}` and the jumps are sourced to the last line of the block they are inside. This resolves the weird stepping behavior in all debuggers and resolves some instances of "ambiguous symbol" errors in WinDbg preventing the user from setting breakpoints at `match` expressions.
2021-03-15bless testsErik Desjardins-1/+1
2020-09-17Rename 64 bit mir files to be more tool friendlyNixon Enraght-Moony-0/+49
See #75746