summary refs log tree commit diff
path: root/tests/mir-opt/inline/inline_shims.drop.Inline.panic-abort.diff
AgeCommit message (Collapse)AuthorLines
2024-05-29[ACP 362] genericize `ptr::from_raw_parts`Scott McMurray-1/+3
2024-05-06Avoid a cast in `ptr::slice_from_raw_parts(_mut)`Scott McMurray-10/+46
Casting to `*const ()` or `*mut ()` just bloats the MIR, so let's not. If ACP#362 goes through we can keep calling `ptr::from_raw_parts(_mut)` in these also without the cast, but that hasn't had any libs-api attention yet, so I'm not waiting on it.
2024-04-03Remove MIR unsafe checkMatthew Jasper-12/+8
This also remove safety information from MIR.
2023-06-15Remove comments from mir-opt MIR dumpsBen Kimock-45/+37
2023-06-12bless mir-optPietro Albini-0/+72
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.