| Age | Commit message (Expand) | Author | Lines |
| 2024-09-17 | Auto merge of #129970 - lukas-code:LayoutCalculator, r=compiler-errors | bors | -1133/+1144 |
| 2024-09-17 | get rid of an old hack | Lukas Markeffsky | -37/+10 |
| 2024-09-17 | assert that unexpectedly unsized fields are sized in the param env | Lukas Markeffsky | -54/+61 |
| 2024-09-16 | Auto merge of #130444 - matthiaskrgr:rollup-onlrjva, r=matthiaskrgr | bors | -67/+100 |
| 2024-09-16 | Rollup merge of #130437 - jder:issue-130372, r=compiler-errors | Matthias Krüger | -4/+13 |
| 2024-09-16 | Rollup merge of #130282 - compiler-errors:over-overflow, r=BoxyUwU | Matthias Krüger | -39/+62 |
| 2024-09-16 | Rollup merge of #130033 - compiler-errors:foreign-fn-types, r=BoxyUwU | Matthias Krüger | -24/+25 |
| 2024-09-16 | Avoid crashing on variadic functions when producing arg-mismatch errors | Jesse Rusak | -4/+13 |
| 2024-09-16 | Auto merge of #130439 - matthiaskrgr:rollup-1lkzo74, r=matthiaskrgr | bors | -16/+77 |
| 2024-09-16 | Rollup merge of #130412 - compiler-errors:rpitit-overcapture, r=jieyouxu | Matthias Krüger | -8/+15 |
| 2024-09-16 | Rollup merge of #130410 - compiler-errors:shim-borrowck-err, r=jieyouxu | Matthias Krüger | -5/+12 |
| 2024-09-16 | Rollup merge of #123436 - amyspark:allow-msvc-to-use-meson-and-mingw-import-l... | Matthias Krüger | -3/+50 |
| 2024-09-16 | Don't ICE when generating Fn shim for async closure with borrowck error | Michael Goulet | -5/+12 |
| 2024-09-16 | Don't ICE when RPITIT captures more method args than trait definition | Michael Goulet | -8/+15 |
| 2024-09-16 | Introduce distinct error codes for precise capturing | Michael Goulet | -4/+38 |
| 2024-09-16 | Do precise capturing arg validation in resolve | Michael Goulet | -15/+50 |
| 2024-09-16 | layout computation: eagerly error for unexpected unsized fields | Lukas Markeffsky | -1010/+1070 |
| 2024-09-16 | make `LayoutCx` not generic | Lukas Markeffsky | -69/+40 |
| 2024-09-16 | Auto merge of #129716 - compiler-errors:closure-debuginfo, r=cjgillot | bors | -1/+4 |
| 2024-09-15 | Rollup merge of #130398 - ChrisDenton:win-cross, r=jieyouxu | Jubilee | -1/+4 |
| 2024-09-15 | Rollup merge of #130325 - workingjubilee:plus-minus-zero-redux, r=RalfJung,ji... | Jubilee | -2/+2 |
| 2024-09-15 | Use -0.0 in `intrinsics::simd::reduce_add_unordered` | Jubilee Young | -2/+2 |
| 2024-09-15 | Auto merge of #130415 - matthiaskrgr:rollup-xhsu9oq, r=matthiaskrgr | bors | -8/+2 |
| 2024-09-15 | const: don't ICE when encountering a mutable ref to immutable memory | Ralf Jung | -8/+2 |
| 2024-09-15 | Rollup merge of #130384 - workingjubilee:document-what-abi-and-pref-align-is,... | Matthias Krüger | -0/+8 |
| 2024-09-15 | Rollup merge of #129897 - RalfJung:soft-float-ignored, r=Urgau | Matthias Krüger | -2/+42 |
| 2024-09-15 | Rollup merge of #130342 - RalfJung:slice-idx-overflow, r=saethlin | Matthias Krüger | -14/+34 |
| 2024-09-15 | Rollup merge of #130293 - gurry:130142-lint-level-issue, r=cjgillot | Matthias Krüger | -5/+3 |
| 2024-09-15 | Rollup merge of #129828 - RalfJung:miri-data-race, r=saethlin | Matthias Krüger | -11/+51 |
| 2024-09-15 | Add system libs when cross compiling for Windows | Chris Denton | -1/+4 |
| 2024-09-15 | Auto merge of #130390 - matthiaskrgr:rollup-evbfwe2, r=matthiaskrgr | bors | -405/+65 |
| 2024-09-15 | Rollup merge of #130371 - saethlin:transmutability-enum-ice, r=compiler-errors | Matthias Krüger | -10/+25 |
| 2024-09-15 | Rollup merge of #130295 - chrisnc:armv8r-feature-fix, r=workingjubilee | Matthias Krüger | -6/+6 |
| 2024-09-15 | Rollup merge of #129195 - RalfJung:const-mut-refs, r=fee1-dead | Matthias Krüger | -389/+34 |
| 2024-09-15 | Auto merge of #130148 - RalfJung:interpret-get_ptr_alloc_mut, r=saethlin | bors | -24/+40 |
| 2024-09-15 | interpret: get_ptr_alloc_mut: lookup allocation only once | Ralf Jung | -24/+40 |
| 2024-09-15 | also stabilize const_refs_to_cell | Ralf Jung | -89/+23 |
| 2024-09-15 | const_refs_to_cell: dont let mutable references sneak past the interior mutab... | Ralf Jung | -1/+12 |
| 2024-09-15 | clean up const checking of mutable references | Ralf Jung | -77/+2 |
| 2024-09-15 | stabilize const_mut_refs | Ralf Jung | -236/+11 |
| 2024-09-15 | also use compute_size_in_bytes for relevant multiplications in Miri | Ralf Jung | -9/+11 |
| 2024-09-14 | compiler: Document AbiAndPrefAlign | Jubilee Young | -0/+8 |
| 2024-09-14 | Fix target-cpu fpu features on Armv8-R. | Chris Copeland | -6/+6 |
| 2024-09-15 | Rollup merge of #130353 - Zalathar:lint-zero, r=jieyouxu | Stuart Cook | -1/+2 |
| 2024-09-14 | Auto merge of #129753 - folkertdev:stabilize-const-extern-fn, r=RalfJung | bors | -24/+8 |
| 2024-09-14 | Correctly account for niche-optimized tags | Ben Kimock | -10/+25 |
| 2024-09-14 | Auto merge of #128543 - RalfJung:const-interior-mut, r=fee1-dead | bors | -106/+132 |
| 2024-09-14 | Consider synthetic closure bodies to be typeck children | Michael Goulet | -1/+4 |
| 2024-09-14 | Auto merge of #130357 - fmease:rollup-j3ej4q0, r=fmease | bors | -438/+329 |
| 2024-09-14 | Rollup merge of #130349 - ShE3py:break_up_float, r=fmease | León Orell Valerian Liehr | -34/+32 |