| Age | Commit message (Expand) | Author | Lines |
| 2021-08-16 | feature gate doc(primitive) | Joshua Nelson | -1/+16 |
| 2021-08-15 | Introduce hir::ExprKind::Let - Take 2 | Caio | -9/+18 |
| 2021-08-15 | Use correct drop scopes for if expressions | Matthew Jasper | -4/+20 |
| 2021-08-14 | Fix dead code warning when inline const is used in pattern | Gary Guo | -0/+7 |
| 2021-08-15 | Fix `reachable_set` for non-function items in non-library crates | hyd-dev | -15/+16 |
| 2021-08-12 | Forbid `!` from being used in `asm!` output | Gary Guo | -5/+10 |
| 2021-08-12 | Adjust `check_no_mangle` and `check_export_name` to warn/error on `#[no_mangl... | hyd-dev | -12/+20 |
| 2021-08-12 | Add associated functions that have custom linkage to `reachable_set` | hyd-dev | -13/+21 |
| 2021-08-07 | Auto merge of #87772 - npmccallum:naked_abi, r=Amanieu | bors | -1/+2 |
| 2021-08-04 | Disable unused variable lint for naked functions | Nathaniel McCallum | -0/+5 |
| 2021-08-04 | Move naked function ABI check to its own lint | Nathaniel McCallum | -1/+2 |
| 2021-08-04 | Auto merge of #87568 - petrochenkov:localevel, r=cjgillot | bors | -103/+96 |
| 2021-08-02 | Validate that naked functions are never inlined | Nathaniel McCallum | -1/+11 |
| 2021-08-01 | Auto merge of #87449 - matthiaskrgr:clippyy_v2, r=nagisa | bors | -2/+2 |
| 2021-07-31 | rustc: Replace `HirId`s with `LocalDefId`s in `AccessLevels` tables | Vadim Petrochenkov | -103/+96 |
| 2021-07-29 | Add feature gates for `for` and `?` in consts | Jonas Schievink | -4/+5 |
| 2021-07-25 | clippy::useless_format | Matthias Krüger | -2/+2 |
| 2021-07-25 | Only check macro attributes when checking the crate root. | Camille GILLOT | -2/+2 |
| 2021-07-25 | Introduce OwnerNode::Crate. | Camille GILLOT | -3/+3 |
| 2021-07-25 | Merge the BTreeMap in hir::Crate. | Camille GILLOT | -1/+1 |
| 2021-07-21 | Allow some temporarily dead code. | Felix S. Klock II | -0/+2 |
| 2021-07-21 | Revert PR 81473 to resolve (on mainline) issues 81626 and 81658. | Felix S. Klock II | -6/+0 |
| 2021-07-14 | Warn about useless assignments of variables/fields to themselves | Fabian Wolff | -0/+54 |
| 2021-07-13 | Auto merge of #86857 - fee1-dead:add-attr, r=oli-obk | bors | -18/+52 |
| 2021-07-12 | Auto merge of #86320 - hi-rustin:rustin-patch-fix-span, r=estebank | bors | -1/+2 |
| 2021-07-11 | Auto merge of #85941 - cjgillot:qresolve, r=Aaron1011 | bors | -24/+27 |
| 2021-07-10 | Check if the attribute is applied correctly | Deadbeef | -0/+26 |
| 2021-07-10 | Applied suggestions | Deadbeef | -11/+6 |
| 2021-07-10 | Add #[default_method_body_is_const] | Deadbeef | -18/+31 |
| 2021-07-08 | Rollup merge of #86838 - lambinoo:I-69630-rust_const_unstable_check_const, r=... | Guillaume Gomez | -1/+60 |
| 2021-07-08 | Rollup merge of #86726 - sexxi-goose:use-diagnostic-item-for-rfc2229-migratio... | Guillaume Gomez | -3/+0 |
| 2021-07-08 | fn must be const if marked with stability attribut | Lamb | -1/+60 |
| 2021-07-06 | Make resolutions a query. | Camille GILLOT | -24/+27 |
| 2021-07-03 | Auto merge of #86571 - fee1-dead:const-trait-impl-fix, r=jackh726 | bors | -0/+63 |
| 2021-07-01 | Auto merge of #86749 - bjorn3:link_info_refactor_part1, r=petrochenkov | bors | -4/+4 |
| 2021-07-01 | Rename all_crate_nums query to crates and remove useless wrapper | bjorn3 | -4/+4 |
| 2021-07-01 | Auto merge of #86190 - asquared31415:extern-main-86110-fix, r=varkor | bors | -1/+15 |
| 2021-07-01 | Do the check even when the feature is not enabled | Deadbeef | -3/+6 |
| 2021-06-29 | Remove lang items Send, UnwindSafe and RefUnwindSafe | Roxane Fruytier | -3/+0 |
| 2021-06-25 | Check that `#[cmse_nonsecure_entry]` is applied to a function definition | Fabian Wolff | -0/+20 |
| 2021-06-23 | deny using default function in impl const Trait | Deadbeef | -0/+60 |
| 2021-06-17 | Fix ICE when using `#[doc(keyword = "...")]` on non-items | Fabian Wolff | -2/+5 |
| 2021-06-15 | Fix ICE when doc aliases were put on function params | Ryan Levick | -0/+2 |
| 2021-06-15 | Use last segment | hi-rustin | -4/+1 |
| 2021-06-15 | shrinking the deprecated method span | hi-rustin | -1/+5 |
| 2021-06-14 | Use the now available implementation of `IntoIterator` for arrays | LeSeulArtichaut | -1/+1 |
| 2021-06-09 | Fix ICE when `main` is declared in an `extern` block | asquared31415 | -1/+15 |
| 2021-06-06 | Rollup merge of #86047 - jyn514:doc-attrs, r=petrochenkov | Yuki Okushi | -1/+1 |
| 2021-06-05 | Don't fire `invalid_doc_attributes` on `extern crate` items | Joshua Nelson | -1/+1 |
| 2021-06-05 | Auto merge of #86001 - richkadel:revert-85617-rustin-patch-fix, r=Mark-Simula... | bors | -5/+1 |