Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
0bb8615
interpret: reduce usage of TypingEnv::fully_monomorphized
RalfJung Dec 9, 2024
0dbb31f
Fix an out-of-date comment.
nnethercote Nov 26, 2024
83f67c5
Remove unused dataflow trait impls and bounds.
nnethercote Dec 5, 2024
d490ea1
Remove lifetimes from `BorrowckDomain`.
nnethercote Nov 26, 2024
086233e
Refer to a couple of domains indirectly.
nnethercote Nov 26, 2024
2298104
Call all `Domain` values `state`.
nnethercote Nov 26, 2024
b059ea8
Rename `EntrySets` as `EntryStates`.
nnethercote Nov 26, 2024
119fbd3
Improve terminology in `elaborate_drops.rs`.
nnethercote Nov 26, 2024
1d56943
Rename some `Analysis` and `ResultsVisitor` methods.
nnethercote Nov 26, 2024
dddc09d
Reorder some `Analysis` methods.
nnethercote Nov 26, 2024
dd3b313
Adjust `alias-uninit-value.rs`
jieyouxu Dec 5, 2024
b5c7a55
Adjust `allow-non-lint-warnings.rs`
jieyouxu Dec 5, 2024
d734d22
Adjust `anonymous-higher-ranked-lifetime.rs`
jieyouxu Dec 5, 2024
4652b14
Adjust `artificial-block.rs`
jieyouxu Dec 5, 2024
56efa0a
Adjust `as-precedence.rs`
jieyouxu Dec 8, 2024
3f52583
Add test for resolve errors caused by mod with parse errors
estebank Dec 5, 2024
69fb612
Keep track of parse errors in `mod`s and don't emit resolve errors fo…
estebank Dec 5, 2024
27420c6
Silence `use foo::Bar;` error if `Bar` isn't found in `foo` and `foo.…
estebank Dec 5, 2024
b795264
Pass TyCtxt rather than Queries to after_expansion
bjorn3 Nov 26, 2023
21634cb
Pass rustc_ast::Crate rather than Queries to after_crate_root_parsing
bjorn3 Dec 12, 2024
8355132
Move type size and vtable size printing to start_codegen
bjorn3 Dec 10, 2024
7e37943
Remove 'tcx lifetime from QuerySystemFns
bjorn3 Nov 3, 2024
3b1adfa
Parsing unsafe binders
compiler-errors Aug 30, 2024
2a9e358
Lower AST and resolve lifetimes for unsafe binder types
compiler-errors Dec 10, 2024
3f97c6b
Add unwrap_unsafe_binder and wrap_unsafe_binder macro operators
compiler-errors Sep 13, 2024
c5d0223
Add tests
compiler-errors Dec 10, 2024
b8c5a0f
Fix tools
compiler-errors Dec 10, 2024
6ce7ba4
Fix typos in docs on provenance
purplesyringa Dec 12, 2024
ab0d792
Rollup merge of #133900 - jieyouxu:ui-cleanup-1, r=fmease
matthiaskrgr Dec 13, 2024
c181026
Rollup merge of #133937 - estebank:silence-resolve-errors-from-mod-wi…
matthiaskrgr Dec 13, 2024
c6ebe6f
Rollup merge of #133938 - nnethercote:rustc_mir_dataflow-renamings, r…
matthiaskrgr Dec 13, 2024
97dc513
Rollup merge of #134058 - RalfJung:interpret-typing-env, r=lcnr
matthiaskrgr Dec 13, 2024
9f6b07e
Rollup merge of #134130 - bjorn3:prepare_driver_query_removal, r=oli-obk
matthiaskrgr Dec 13, 2024
5c9b227
Rollup merge of #134140 - compiler-errors:unsafe-binders-ast, r=oli-obk
matthiaskrgr Dec 13, 2024
8cce32a
Rollup merge of #134229 - purplesyringa:provenance-docs, r=saethlin
matthiaskrgr Dec 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix an out-of-date comment.
  • Loading branch information
nnethercote committed Dec 10, 2024
commit 0dbb31f7e7313cbcccbf7cfaf04b5d926c3491f9
2 changes: 1 addition & 1 deletion compiler/rustc_mir_dataflow/src/impls/initialized.rs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ impl<'tcx> Analysis<'tcx> for MaybeUninitializedPlaces<'_, 'tcx> {
const NAME: &'static str = "maybe_uninit";

fn bottom_value(&self, _: &mir::Body<'tcx>) -> Self::Domain {
// bottom = initialized (start_block_effect counters this at outset)
// bottom = initialized (`initialize_start_block` overwrites this on first entry)
MixedBitSet::new_empty(self.move_data().move_paths.len())
}

Expand Down