| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2022-11-09 | Fix `rustdoc --version` when used with download-rustc | Joshua Nelson | -0/+1 | |
| Previously, rustdoc would unconditionally report the version that *rustc* was compiled with. That showed things like `nightly-2022-10-30`, which wasn't right, since this was a `dev` build compiled from source. Fix it by changing `rustc_driver::version` to a macro expanded at invocation time. | ||||
| 2022-09-26 | remove cfg(bootstrap) | Pietro Albini | -1/+0 | |
| 2022-09-15 | Only enable the let_else feature on bootstrap | est31 | -1/+1 | |
| On later stages, the feature is already stable. Result of running: rg -l "feature.let_else" compiler/ src/librustdoc/ library/ | xargs sed -s -i "s#\\[feature.let_else#\\[cfg_attr\\(bootstrap, feature\\(let_else\\)#" | ||||
| 2022-09-01 | Always import all tracing macros for the entire crate instead of piecemeal ↵ | Oli Scherer | -0/+3 | |
| by module | ||||
| 2022-08-22 | Deny diagnostic lints in rustc_interface | Giacomo Stevanato | -0/+2 | |
| 2022-08-22 | Move existing diagnostic struct to a new errors module | Giacomo Stevanato | -0/+1 | |
| 2022-06-03 | Fully stabilize NLL | Jack Huey | -1/+0 | |
| 2022-05-04 | Stabilize `bool::then_some` | Josh Triplett | -1/+0 | |
| 2022-02-25 | Switch bootstrap cfgs | Mark Rousskov | -1/+1 | |
| 2022-02-12 | Move setup_callbacks call to create_compiler_and_run | bjorn3 | -0/+1 | |
| This ensures that it is called even when run_in_thread_pool_with_globals is avoided and reduces code duplication between the parallel and non-parallel version of run_in_thread_pool_with_globals | ||||
| 2022-02-01 | add a rustc::query_stability lint | lcnr | -0/+1 | |
| 2022-01-18 | Use let_else in even more places | est31 | -0/+1 | |
| 2021-10-28 | Revert "Add rustc lint, warning when iterating over hashmaps" | Mark Rousskov | -1/+0 | |
| 2021-10-15 | allow `potential_query_instability` everywhere | lcnr | -0/+1 | |
| 2021-09-23 | Simplify scoped_thread | Mark Rousskov | -0/+1 | |
| Avoids a bunch of manual pointer manipulation. | ||||
| 2021-06-08 | Don't use a generator for BoxedResolver | bjorn3 | -2/+0 | |
| The generator is non-trivial and requires unsafe code anyway. Using regular unsafe code without a generator is much easier to follow. | ||||
| 2021-05-31 | Remove unused feature gates | bjorn3 | -1/+0 | |
| 2021-02-01 | Box the biggest ast::ItemKind variants | Dániel Buga | -0/+1 | |
| 2020-11-10 | Merge set_panic and set_print into set_output_capture. | Mara Bos | -1/+1 | |
| There were no use cases for setting them separately. Merging them simplifies some things. | ||||
| 2020-08-30 | datastructures: replace `once_cell` crate with an impl from std | marmeladema | -0/+1 | |
| 2020-08-30 | mv compiler to compiler/ | mark | -0/+21 | |
