about summary refs log tree commit diff
path: root/tests/mir-opt/inline/inline_diverging.h.Inline.panic-abort.diff
AgeCommit message (Collapse)AuthorLines
2025-03-12Allow more top-down inlining for single-BB calleesScott McMurray-0/+5
This means that things like `<usize as Step>::forward_unchecked` and `<PartialOrd for f32>::le` will inline even if we've already done a bunch of inlining to find the calls to them.
2025-03-03Inline FnOnce once againMichael Goulet-15/+9
2024-08-18Bless *all* the mir-opt testsScott McMurray-1/+1
2024-01-11Sandwich MIR optimizations between DSE.Camille GILLOT-1/+1
2023-10-08Also consider call and yield as MIR SSA.Camille GILLOT-2/+2
2023-08-03Explicitly don't inline user-written rust-call fnsMichael Goulet-9/+15
2023-06-15Remove comments from mir-opt MIR dumpsBen Kimock-32/+26
2023-06-12bless mir-optPietro Albini-0/+51
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.