| Age | Commit message (Expand) | Author | Lines |
| 2021-07-19 | Iterate through impls only when permitted | Deadbeef | -8/+11 |
| 2021-07-17 | Auto merge of #87123 - RalfJung:miri-provenance-overhaul, r=oli-obk | bors | -17/+10 |
| 2021-07-16 | get rid of incorrect erase_for_fmt | Ralf Jung | -2/+2 |
| 2021-07-15 | adjustions and cleanup to make Miri build again | Ralf Jung | -1/+1 |
| 2021-07-14 | consistently treat None-tagged pointers as ints; get rid of some deprecated S... | Ralf Jung | -5/+4 |
| 2021-07-14 | CTFE/Miri engine Pointer type overhaul: make Scalar-to-Pointer conversion inf... | Ralf Jung | -11/+5 |
| 2021-07-13 | Auto merge of #87044 - cjgillot:expnhash, r=petrochenkov | bors | -1/+2 |
| 2021-07-13 | Cache expansion hash. | Camille GILLOT | -1/+2 |
| 2021-07-13 | Auto merge of #86857 - fee1-dead:add-attr, r=oli-obk | bors | -2/+28 |
| 2021-07-10 | rustc_span: Revert addition of `proc_macro` field to `ExpnKind::Macro` | Vadim Petrochenkov | -5/+2 |
| 2021-07-11 | Rollup merge of #87028 - aDotInTheVoid:patch-1, r=petrochenkov | Yuki Okushi | -1/+1 |
| 2021-07-10 | Fix typo: `satic` -> `static` | Nixon Enraght-Moony | -1/+1 |
| 2021-07-10 | Permit calls to default const fns of impl const | Deadbeef | -7/+25 |
| 2021-07-10 | Skip check for calling functions in same trait | Deadbeef | -3/+11 |
| 2021-07-10 | remove const_raw_ptr_to_usize_cast feature | Ralf Jung | -40/+16 |
| 2021-07-08 | Rework SESSION_GLOBALS API to prevent overwriting it | Guillaume Gomez | -2/+2 |
| 2021-07-06 | Store macro parent module in ExpnData. | Camille GILLOT | -1/+1 |
| 2021-07-04 | Combine individual limit queries into single `limits` query | Aaron Hill | -1/+1 |
| 2021-07-04 | Query-ify global limit attribute handling | Aaron Hill | -3/+15 |
| 2021-07-04 | Auto merge of #86255 - Smittyvb:mir-alloc-oom, r=RalfJung,oli-obk | bors | -1/+6 |
| 2021-07-03 | add note about MAX_ALLOC_LIMIT | Smittyvb | -1/+1 |
| 2021-07-02 | Allocation failure in constprop panics right away | Smitty | -0/+1 |
| 2021-07-03 | Remove `ty::Binder::bind()` | Yuki Okushi | -6/+1 |
| 2021-06-30 | Delay ICE on evaluation fail | Smitty | -68/+15 |
| 2021-06-30 | Properly evaluate non-consts in const prop | Smitty | -8/+51 |
| 2021-06-30 | Simplify memory failure checking | Smitty | -17/+16 |
| 2021-06-30 | Rename is_spurious -> is_volatile | Smitty | -2/+2 |
| 2021-06-29 | Properly handle const prop failures | Smitty | -0/+13 |
| 2021-06-29 | Simplify const_prop logic | Smitty | -11/+9 |
| 2021-06-29 | Support allocation failures when interperting MIR | Smitty | -7/+11 |
| 2021-06-25 | Auto merge of #85603 - ogoffart:fix-uninhabited-enum-branching-pass, r=wesley... | bors | -7/+5 |
| 2021-06-22 | Rollup merge of #86517 - camsteffen:unused-unsafe-async, r=LeSeulArtichaut | Yuki Okushi | -0/+1 |
| 2021-06-21 | Fix unused_unsafe with compiler-generated unsafe | Cameron Steffen | -0/+1 |
| 2021-06-21 | Auto merge of #86383 - shamatar:slice_len_lowering, r=bjorn3 | bors | -0/+102 |
| 2021-06-20 | Squashed implementation of the pass | Alex Vlasov | -0/+102 |
| 2021-06-19 | Rollup merge of #86407 - LingMan:map-or, r=LeSeulArtichaut | Yuki Okushi | -6/+3 |
| 2021-06-18 | Auto merge of #85421 - Smittyvb:rm_pushpop_unsafe, r=matthewjasper | bors | -1/+0 |
| 2021-06-17 | Use `map_or` instead of open-coding it | LingMan | -6/+3 |
| 2021-06-16 | Stop returning a value from `report_assert_as_lint` | LingMan | -11/+14 |
| 2021-06-09 | Auto merge of #86107 - Smittyvb:peephole-optim-eq-bool, r=wesleywiser | bors | -7/+14 |
| 2021-06-07 | Peephole optimize `x == false` and `x != true` | Smitty | -7/+14 |
| 2021-06-07 | Rollup merge of #85973 - LingMan:indentation, r=jyn514 | Yuki Okushi | -25/+22 |
| 2021-06-06 | Remove some last remants of {push,pop}_unsafe! | Smitty | -1/+0 |
| 2021-06-05 | Drop an `if let` that will always succeed | LingMan | -7/+5 |
| 2021-06-04 | Auto merge of #85385 - richkadel:simpler-simplify-with-coverage, r=wesleywiser | bors | -16/+91 |
| 2021-06-03 | Replace a `match` with an `if let` | LingMan | -25/+22 |
| 2021-06-03 | Auto merge of #85952 - JohnTitor:rollup-r00gu9q, r=JohnTitor | bors | -38/+33 |
| 2021-06-03 | Rollup merge of #85935 - tmiasko:validate-indexing, r=jonas-schievink | Yuki Okushi | -2/+20 |
| 2021-06-03 | Rollup merge of #85934 - tmiasko:is-union, r=jackh726 | Yuki Okushi | -32/+10 |
| 2021-06-03 | Rollup merge of #85880 - csmoe:ice-85768, r=oli-obk | Yuki Okushi | -4/+3 |