about summary refs log tree commit diff
path: root/compiler/rustc_query_system/src/cache.rs
AgeCommit message (Collapse)AuthorLines
2024-07-29Reformat `use` declarations.Nicholas Nethercote-2/+2
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
2024-07-12enable fuzzing of `SearchGraph`lcnr-1/+1
fully move it into `rustc_type_ir` and make it independent of `Interner`.
2023-04-04Remove a fishy Clone implOli Scherer-1/+6
2022-11-06Rename `Ctxt` and `CTX` to `Tcx` and `Qcx`Nilstrieb-2/+2
This makes it consistent and clear which context is used.
2021-03-27Remove (lots of) dead codeJoshua Nelson-8/+0
Found with https://github.com/est31/warnalyzer. Dubious changes: - Is anyone else using rustc_apfloat? I feel weird completely deleting x87 support. - Maybe some of the dead code in rustc_data_structures, in case someone wants to use it in the future? - Don't change rustc_serialize I plan to scrap most of the json module in the near future (see https://github.com/rust-lang/compiler-team/issues/418) and fixing the tests needed more work than I expected. TODO: check if any of the comments on the deleted code should be kept.
2021-02-19Don't require a QueryContext to access the DepGraph.Camille GILLOT-4/+3
2020-08-30mv compiler to compiler/mark-0/+62