| Age | Commit message (Expand) | Author | Lines |
| 2021-06-09 | Encode CrateNum using the StableCrateId for incr. comp. | Camille GILLOT | -71/+42 |
| 2021-06-09 | Auto merge of #86150 - cjgillot:notable, r=michaelwoerister | bors | -39/+14 |
| 2021-06-09 | Auto merge of #86118 - spastorino:tait-soundness-bug, r=nikomatsakis | bors | -132/+336 |
| 2021-06-09 | Auto merge of #86107 - Smittyvb:peephole-optim-eq-bool, r=wesleywiser | bors | -7/+14 |
| 2021-06-09 | Rollup merge of #86124 - Aaron1011:ambig-macro-name, r=varkor | Yuki Okushi | -5/+11 |
| 2021-06-09 | Rollup merge of #85982 - alexcrichton:doc-safe-wasm, r=jyn514 | Yuki Okushi | -1/+5 |
| 2021-06-08 | Do not require the DefPathTable to construct the on-disk cache. | Camille GILLOT | -39/+14 |
| 2021-06-08 | add VecMap docs | Santiago Pastorino | -0/+14 |
| 2021-06-08 | Use impl FnMut directly as predicate type | Santiago Pastorino | -4/+1 |
| 2021-06-08 | Explicitly pass find arguments down the predicate so coercions can apply | Santiago Pastorino | -2/+2 |
| 2021-06-08 | Do not deconstruct OpaqueTypeKey to make the code more clear | Santiago Pastorino | -9/+8 |
| 2021-06-08 | defin_ty_def_id -> definition_ty_def_id | Santiago Pastorino | -3/+3 |
| 2021-06-08 | Destructure OpaqueTypeKey in certain cases to simplify code | Santiago Pastorino | -13/+14 |
| 2021-06-08 | Simplify code by using VecMap::get_by | Santiago Pastorino | -73/+65 |
| 2021-06-08 | Add VecMap::get_by(FnMut -> bool) | Santiago Pastorino | -0/+7 |
| 2021-06-08 | Rollup merge of #86103 - camsteffen:lifetime-hack, r=jackh726 | Yuki Okushi | -9/+1 |
| 2021-06-08 | Rollup merge of #86096 - FabianWolff:ec-E0316, r=GuillaumeGomez | Yuki Okushi | -16/+48 |
| 2021-06-08 | Rollup merge of #85906 - LingMan:iter_find, r=matthewjasper | Yuki Okushi | -8/+3 |
| 2021-06-07 | Include macro name in 'local ambiguity' error | Aaron Hill | -5/+11 |
| 2021-06-07 | Enable rustdoc to document safe wasm intrinsics | Alex Crichton | -1/+5 |
| 2021-06-07 | Differentiate different defining uses of taits when they reference distinct g... | Santiago Pastorino | -10/+7 |
| 2021-06-07 | Remove substs from OpaqueTypeDecl, use the one in OpaqueTypeKey | Santiago Pastorino | -29/+27 |
| 2021-06-07 | Use substs from opaque type key instead of using it from opaque_decl | Santiago Pastorino | -26/+18 |
| 2021-06-07 | Make opaque type map key be of type OpaqueTypeKey | Santiago Pastorino | -11/+21 |
| 2021-06-07 | Remove ResolvedOpaqueTy and just use Ty, SubstsRef is already there | Santiago Pastorino | -69/+40 |
| 2021-06-07 | Make OpaqueTypeKey the key of opaque types map | Santiago Pastorino | -98/+134 |
| 2021-06-07 | Change concrete opaque type to be a `VecMap` | Santiago Pastorino | -5/+7 |
| 2021-06-07 | Change opaque type map to be a `VecMap` | Santiago Pastorino | -8/+10 |
| 2021-06-07 | Add VecMap to rustc_data_structures | Santiago Pastorino | -0/+186 |
| 2021-06-07 | Peephole optimize `x == false` and `x != true` | Smitty | -7/+14 |
| 2021-06-07 | Remove lifetime hack | Cameron Steffen | -9/+1 |
| 2021-06-07 | Auto merge of #85903 - bjorn3:rustc_serialize_cleanup, r=varkor | bors | -336/+130 |
| 2021-06-07 | Add E0316.md | Fabian Wolff | -1/+33 |
| 2021-06-07 | Comment out unused error codes in error_codes.rs | Fabian Wolff | -15/+15 |
| 2021-06-07 | Auto merge of #85891 - bjorn3:revert_merge_crate_disambiguator, r=Mark-Simula... | bors | -132/+215 |
| 2021-06-07 | Revert "Merge CrateDisambiguator into StableCrateId" | bjorn3 | -127/+207 |
| 2021-06-07 | Revert "Fix test" | bjorn3 | -5/+8 |
| 2021-06-07 | Rollup merge of #86081 - LingMan:try_into, r=jyn514 | Yuki Okushi | -10/+2 |
| 2021-06-07 | Rollup merge of #86025 - bjorn3:no_rpath_cfg_prefix, r=jackh726 | Yuki Okushi | -36/+5 |
| 2021-06-07 | Rollup merge of #86016 - luqmana:infer-linker-flavor, r=petrochenkov | Yuki Okushi | -90/+3 |
| 2021-06-07 | Rollup merge of #85973 - LingMan:indentation, r=jyn514 | Yuki Okushi | -25/+22 |
| 2021-06-07 | Rollup merge of #84262 - camelid:sized-ice, r=estebank | Yuki Okushi | -1/+8 |
| 2021-06-07 | Auto merge of #85810 - bjorn3:further_driver_cleanup, r=varkor | bors | -117/+100 |
| 2021-06-07 | Use `try_into` instead of asserting manually | LingMan | -10/+2 |
| 2021-06-07 | Rollup merge of #86077 - FabianWolff:issue-86061, r=GuillaumeGomez | Guillaume Gomez | -3/+3 |
| 2021-06-07 | Rollup merge of #86058 - fee1-dead:E0121-improvements, r=jackh726 | Guillaume Gomez | -1/+1 |
| 2021-06-07 | Rollup merge of #86010 - FabianWolff:ICE-parser, r=varkor | Guillaume Gomez | -38/+47 |
| 2021-06-07 | Rollup merge of #85965 - tmiasko:a, r=nagisa | Guillaume Gomez | -46/+4 |
| 2021-06-07 | Rollup merge of #85912 - LingMan:iter_any, r=nagisa | Guillaume Gomez | -9/+4 |
| 2021-06-06 | Fix corrected example in E0759.md | Fabian Wolff | -3/+3 |