| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-02-18 | Move methods from `Map` to `TyCtxt`, part 2. | Nicholas Nethercote | -2/+2 | |
| Continuing the work started in #136466. Every method gains a `hir_` prefix, though for the ones that already have a `par_` or `try_par_` prefix I added the `hir_` after that. | ||||
| 2025-02-06 | Merge commit '3e3715c31236bff56f1c63a1de2c7bbdfcfb0923' into ↵ | Philipp Krones | -4/+8 | |
| clippy-subtree-update | ||||
| 2025-01-28 | Merge commit '51d49c1ae2785b24ef18a46ef233fc1d91844666' into ↵ | Philipp Krones | -3/+4 | |
| clippy-subtree-update | ||||
| 2025-01-11 | migrate `clippy` to the `DenseBitSet` name | Rémy Rakic | -16/+16 | |
| 2025-01-09 | Merge commit '19e305bb57a7595f2a8d81f521c0dd8bf854e739' into ↵ | Philipp Krones | -1/+1 | |
| clippy-subtree-update | ||||
| 2024-11-29 | Stop using `HybridBitSet` in clippy. | Nicholas Nethercote | -10/+10 | |
| The compiler uses `BitSet<Local>`, because the number of locals doesn't get that high, so clippy should do likewise. | ||||
| 2024-10-30 | Remove `Analysis::into_engine`. | Nicholas Nethercote | -3/+1 | |
| This is a standard pattern: ``` MyAnalysis.into_engine(tcx, body).iterate_to_fixpoint() ``` `into_engine` and `iterate_to_fixpoint` are always called in pairs, but sometimes with a builder-style `pass_name` call between them. But a builder-style interface is overkill here. This has been bugging me a for a while. This commit: - Merges `Engine::new` and `Engine::iterate_to_fixpoint`. This removes the need for `Engine` to have fields, leaving it as a trivial type that the next commit will remove. - Renames `Analysis::into_engine` as `Analysis::iterate_to_fixpoint`, gives it an extra argument for the optional pass name, and makes it call `Engine::iterate_to_fixpoint` instead of `Engine::new`. This turns the pattern from above into this: ``` MyAnalysis.iterate_to_fixpoint(tcx, body, None) ``` which is shorter at every call site, and there's less plumbing required to support it. | ||||
| 2024-10-14 | Remove `ResultsCursor::contains`. | Nicholas Nethercote | -2/+2 | |
| It's hardly worth it, and it needs to be removed so that `GenKillAnalysis` can be removed. | ||||
| 2024-10-03 | Merge commit 'aa0d551351a9c15d8a95fdb3e2946b505893dda8' into ↵ | Philipp Krones | -5/+5 | |
| clippy-subtree-update | ||||
| 2024-09-24 | Merge commit '7901289135257ca0fbed3a5522526f95b0f5edba' into ↵ | Philipp Krones | -9/+5 | |
| clippy-subtree-update | ||||
| 2024-09-21 | Fix clippy | Ben Kimock | -1/+1 | |
| 2024-06-27 | Merge commit '68a799aea9b65e2444fbecfe32217ce7d5a3604f' into ↵ | Philipp Krones | -1/+1 | |
| clippy-subtree-update | ||||
| 2024-05-17 | Fix clippy | Scott McMurray | -2/+2 | |
| 2024-04-04 | Merge commit '9725c4a162502a02c1c67fdca6b797fe09b2b73c' into ↵ | Philipp Krones | -1/+1 | |
| clippy-subtree-update | ||||
| 2024-03-05 | Convert `TypeVisitor` and `DefIdVisitor` to use `VisitorResult` | Jason Newcomb | -2/+2 | |
| 2024-01-15 | compiler: Lower fn call arg spans down to MIR | Martin Nordholts | -1/+1 | |
| To enable improved accuracy of diagnostics in upcoming commits. | ||||
| 2023-09-28 | Reverse postorder instead of using reversed postorder | Maybe Waffle | -13/+19 | |
| 2023-09-25 | Merge commit '7671c283a50b5d1168841f3014b14000f01dd204' into clippyup | Philipp Krones | -6/+34 | |
| 2023-07-31 | Merge commit '5436dba826191964ac1d0dab534b7eb6d4c878f6' into clippyup | Philipp Krones | -1/+1 | |
| 2023-07-17 | Merge commit 'd9c24d1b1ee61f276e550b967409c9f155eac4e3' into clippyup | Philipp Krones | -13/+22 | |
| 2023-02-22 | Remove type-traversal trait aliases | Alan Egerton | -1/+1 | |
| 2023-02-13 | Make visiting traits generic over the Interner | Alan Egerton | -2/+2 | |
| 2023-02-13 | Alias folding/visiting traits instead of re-export | Alan Egerton | -1/+1 | |
| 2023-01-27 | Remove from librustdoc and clippy too | Scott McMurray | -1/+1 | |
| 2023-01-12 | Merge commit '7f27e2e74ef957baa382dc05cf08df6368165c74' into clippyup | Philipp Krones | -171/+99 | |
| 2022-12-29 | Merge commit '4f3ab69ea0a0908260944443c739426cc384ae1a' into clippyup | Philipp Krones | -156/+172 | |
| 2022-10-23 | Merge commit '4f142aa1058f14f153f8bfd2d82f04ddb9982388' into clippyup | flip1995 | -0/+545 | |
