about summary refs log tree commit diff
path: root/compiler/rustc_passes/src/stability.rs
AgeCommit message (Expand)AuthorLines
2024-07-29Reformat `use` declarations.Nicholas Nethercote-3/+5
2024-07-10Report usage of lib features in ast validationMichael Goulet-6/+0
2024-06-06Revert "Rollup merge of #124976 - petrochenkov:usedcrates, r=oli-obk"Rémy Rakic-2/+2
2024-05-23Auto merge of #125434 - nnethercote:rm-more-extern-tracing, r=jackh726bors-1/+1
2024-05-23Remove `#[macro_use] extern crate tracing` from `rustc_passes`.Nicholas Nethercote-1/+1
2024-05-22rustc: Use `tcx.used_crates(())` moreVadim Petrochenkov-2/+2
2024-02-25remove platform-intrinsics ABI; make SIMD intrinsics be regular intrinsicsRalf Jung-4/+1
2024-02-15Replace `NonZero::<_>::new` with `NonZero::new`.Markus Reiter-1/+1
2024-02-15Use generic `NonZero` internally.Markus Reiter-2/+2
2024-02-13Bump `indexmap`clubby789-3/+5
2024-01-23Rename `TyCtxt::emit_spanned_lint` as `TyCtxt::emit_node_span_lint`.Nicholas Nethercote-4/+4
2024-01-04Address review comments and add back some #[inline] attrs from removed commits.Michael Woerister-2/+0
2024-01-04Replace a number of FxHashMaps/Sets with stable-iteration-order alternatives.Michael Woerister-8/+9
2023-12-24Remove `Session` methods that duplicate `DiagCtxt` methods.Nicholas Nethercote-13/+15
2023-12-12rustc_passes: Enforce `rustc::potential_query_instability` lintMartin Nordholts-0/+3
2023-11-26rustc: `hir().local_def_id_to_hir_id()` -> `tcx.local_def_id_to_hir_id()` cle...Vadim Petrochenkov-2/+2
2023-11-21Fix `clippy::needless_borrow` in the compilerNilstrieb-5/+5
2023-11-20Store feature stability un-splitMichael Goulet-10/+8
2023-11-20Unify defined_lib_features and lib_features queriesMichael Goulet-13/+12
2023-11-15Re-format code with new rustfmtMark Rousskov-1/+4
2023-10-30Add method for checking if deprecation is a rustc versionDavid Tolnay-8/+2
2023-10-30Represent absence of 'since' attribute as a variant of DeprecatedSinceDavid Tolnay-2/+2
2023-10-29Store version of `deprecated` attribute in structured formDavid Tolnay-34/+15
2023-10-29Rename Since -> StableSince in preparation for a DeprecatedSinceDavid Tolnay-4/+4
2023-10-26Pre-intern a symbol for env!("CFG_RELEASE")David Tolnay-3/+3
2023-10-24Keep track of #[stable] attribute even if version cannot be parsedDavid Tolnay-0/+4
2023-10-24Store 'since' attribute as parsed VersionDavid Tolnay-29/+31
2023-10-13Format all the let chains in compilerMichael Goulet-3/+6
2023-08-15Rollup merge of #114772 - fee1-dead-contrib:typed-did, r=b-naberGuillaume Gomez-2/+2
2023-08-14Use `{Local}ModDefId` in many queriesNilstrieb-2/+2
2023-08-11rustc: Move `features` from `Session` to `GlobalCtxt`Vadim Petrochenkov-1/+1
2023-08-06lower impl const to bind to host effect paramDeadbeef-8/+2
2023-07-12Re-format let-else per rustfmt updateMark Rousskov-1/+3
2023-05-24Use `is_some_and`/`is_ok_and` in less obvious spotsMaybe Waffle-9/+6
2023-05-24Use `Option::is_some_and` and `Result::is_ok_and` in the compilerMaybe Waffle-5/+3
2023-05-15Move expansion of query macros in rustc_middle to rustc_middle::queryJohn Kåre Alsaker-1/+2
2023-04-26Migrate `rustc_passes` to translatable diagnosticsclubby789-27/+15
2023-04-09Migrate `sess.opts.tests` uses to `sess.is_test_crate()`blyxyas-1/+1
2023-03-23Separate find_*_stability.Camille GILLOT-3/+5
2023-03-21Use local key in providersMichael Goulet-8/+4
2023-03-06Rollup merge of #107801 - davidtwco:stability-implies-const, r=NilstriebMatthias Krüger-0/+9
2023-02-26Rollup merge of #108449 - fee1-dead-contrib:do_not_lint_unresolved, r=compile...Matthias Krüger-1/+4
2023-02-25Do not lint unresolved trait for ineffective unstable trait implDeadbeef-1/+4
2023-02-22diagnostics: if AssocFn has self argument, describe as methodMichael Howell-2/+2
2023-02-19Auto merge of #108128 - clubby789:builtin-derived-attr, r=jackh726bors-1/+1
2023-02-16Properly check for builtin derivesclubby789-1/+1
2023-02-16Replace some `then`s with some `then_some`sMaybe Waffle-1/+1
2023-02-16`if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)`Maybe Waffle-1/+1
2023-02-08const_eval: `implies_by` in `rustc_const_unstable`David Wood-0/+9
2023-02-05rustc_passes: remove huge error importsest31-24/+21