about summary refs log tree commit diff
path: root/tests/mir-opt/lower_intrinsics.unchecked.LowerIntrinsics.panic-unwind.diff
AgeCommit message (Collapse)AuthorLines
2024-08-18Bless *all* the mir-opt testsScott McMurray-18/+18
2024-03-30De-LLVM the unchecked shifts [MCP#693]Scott McMurray-71/+112
This is just one part of the MCP, but it's the one that IMHO removes the most noise from the standard library code. Seems net simpler this way, since MIR already supported heterogeneous shifts anyway, and thus it's not more work for backends than before.
2023-06-19Promote unchecked_add/sub/mul/shl/shr to mir::BinOpScott McMurray-6/+106
2023-06-15Remove comments from mir-opt MIR dumpsBen Kimock-41/+35
2023-06-12bless mir-optPietro Albini-0/+60
To reproduce the changes in this commit locally: - Run `./x test tidy` and remove all the output files not associated with a test file anymore, as reported by tidy. - Run `./x test tests/mir-opt --bless` to generate the new outputs.