| Age | Commit message (Expand) | Author | Lines |
| 2020-05-29 | liveness: Warn about unused captured variables | Tomasz Miąsko | -54/+170 |
| 2020-05-29 | liveness: Include upvars in the analysis | Tomasz Miąsko | -36/+33 |
| 2020-05-29 | liveness: Remove unused fallthrough_ln | Tomasz Miąsko | -9/+1 |
| 2020-05-29 | liveness: Remove unused clean_exit_var | Tomasz Miąsko | -14/+1 |
| 2020-05-29 | liveness: Log information about used variables | Tomasz Miąsko | -5/+8 |
| 2020-05-26 | Rollup merge of #72581 - samrat:allow-desugared-break-in-labeled-block, r=dav... | Dylan DPC | -1/+2 |
| 2020-05-26 | Allow unlabeled breaks from desugared `?` in labeled blocks | Samrat Man Singh | -1/+2 |
| 2020-05-25 | Rollup merge of #72544 - sexxi-goose:upvars_mentioned, r=matthewjasper | Ralf Jung | -7/+7 |
| 2020-05-25 | Rollup merge of #72537 - Amanieu:fix-asm-liveness, r=petrochenkov | Ralf Jung | -8/+2 |
| 2020-05-24 | librustc_middle: Rename upvars query to upvars_mentioned | Aman Arora | -7/+7 |
| 2020-05-24 | Fix InlineAsmOperand expresions being visited twice during liveness checking | Amanieu d'Antras | -8/+2 |
| 2020-05-22 | Use `OnceCell` instead of `Once` | Dylan MacKenzie | -3/+3 |
| 2020-05-18 | Move InlineAsmTemplatePiece and InlineAsmOptions to librustc_ast | Amanieu d'Antras | -3/+3 |
| 2020-05-18 | Add support for high byte registers on x86 | Amanieu d'Antras | -13/+11 |
| 2020-05-18 | Apply review feedback | Amanieu d'Antras | -3/+14 |
| 2020-05-18 | HIR passes for asm! | Amanieu d'Antras | -13/+363 |
| 2020-05-11 | Fix clippy warnings | Matthias Krüger | -3/+3 |
| 2020-05-09 | Rollup merge of #71555 - cjgillot:nameless, r=matthewjasper | Ralf Jung | -7/+6 |
| 2020-05-09 | Rollup merge of #71947 - mibac138:dead-code, r=cramertj | Dylan DPC | -2/+12 |
| 2020-05-08 | Remove ast::{Ident, Name} reexports. | Camille GILLOT | -7/+6 |
| 2020-05-07 | Use `hir::ConstContext` instead of local enums | Dylan MacKenzie | -48/+7 |
| 2020-05-06 | Dead-code pass highlights too much of impl functions | mibac138 | -2/+12 |
| 2020-05-02 | Rollup merge of #71777 - petrochenkov:crtype, r=Mark-Simulacrum | Dylan DPC | -17/+15 |
| 2020-05-02 | cleanup: `config::CrateType` -> `CrateType` | Vadim Petrochenkov | -17/+15 |
| 2020-05-01 | Mark query function as must_use. | Camille GILLOT | -2/+2 |
| 2020-05-01 | Auto merge of #70674 - cjgillot:query-arena-all, r=matthewjasper | bors | -8/+8 |
| 2020-04-30 | Rollup merge of #71205 - NeoRaider:check_attr, r=jonas-schievink | Dylan DPC | -1/+4 |
| 2020-04-28 | Move a few queries to using an arena. | Camille GILLOT | -1/+1 |
| 2020-04-28 | Use the query system to allocate. | Camille GILLOT | -7/+7 |
| 2020-04-27 | Change return type of `entry_fn` query to return a `LocalDefId` | marmeladema | -9/+11 |
| 2020-04-27 | Use `LocalDefId` in `typeck_tables_of` and `used_trait_imports` queries | marmeladema | -4/+4 |
| 2020-04-26 | Rollup merge of #70043 - mark-i-m:def-kind-more, r=eddyb | Dylan DPC | -36/+20 |
| 2020-04-24 | Avoid unused Option::map results | Josh Stone | -1/+3 |
| 2020-04-24 | fix a couple more uses of def_kind | mark | -2/+2 |
| 2020-04-24 | Remove redundant `descr`/`descriptive_variant` methods from HIR. | Eduard-Mihai Burtescu | -36/+20 |
| 2020-04-23 | Address comments from review | marmeladema | -3/+2 |
| 2020-04-23 | Modify `as_local_hir_id` to return a bare `HirId` | marmeladema | -23/+15 |
| 2020-04-23 | Modify `as_local_hir_id` to accept a `LocalDefId` instead of a `DefId` | marmeladema | -15/+24 |
| 2020-04-23 | librustc_middle: return LocalDefId instead of DefId in local_def_id | marmeladema | -14/+14 |
| 2020-04-20 | Remove unused dependencies | Shotaro Yamada | -2/+0 |
| 2020-04-19 | Auto merge of #71331 - Dylan-DPC:rollup-5rn1isc, r=Dylan-DPC | bors | -1/+3 |
| 2020-04-19 | Dogfood more or_patterns in the compiler | Josh Stone | -19/+21 |
| 2020-04-19 | Fix false "never constructed" warnings for `Self::` variant paths | seiya | -1/+3 |
| 2020-04-17 | Rollup merge of #69642 - ecstatic-morse:issue-69615, r=oli-obk | Dylan DPC | -7/+7 |
| 2020-04-16 | rustc: fix check_attr() for methods, closures and foreign functions | Matthias Schiffer | -1/+4 |
| 2020-04-16 | don't clone types that are copy (clippy::clone_on_copy) | Matthias Krüger | -1/+1 |
| 2020-04-14 | Remove `DUMMY_HIR_ID` | marmeladema | -10/+0 |
| 2020-04-12 | Rollup merge of #71069 - marmeladema:dummy-hir-id-obligation-clause, r=eddyb | Dylan DPC | -11/+10 |
| 2020-04-12 | Rollup merge of #67766 - sapir:fix-unused-in-or-pattern-warning, r=matthewjasper | Dylan DPC | -26/+49 |
| 2020-04-12 | Remove usage of `DUMMY_HIR_ID` in `CheckAttrVisitor::check_inline` | marmeladema | -3/+2 |