Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
c703af3
Add VarDebugInfo to Stable MIR
ouz-a Nov 16, 2023
965f46b
de-structure variable and add stables
ouz-a Nov 17, 2023
0d0a417
Expand Miri's BorTag GC to a Provenance GC
saethlin Nov 18, 2023
0ec82fa
tag-gc -> provenance-gc
saethlin Nov 18, 2023
e2664eb
Reduce exposure of some items.
nnethercote Nov 16, 2023
a3bd5a0
Inline and remove `record_layout_for_printing`.
nnethercote Nov 16, 2023
9e6ee72
Alphabetize features.
nnethercote Nov 16, 2023
6b4465d
Remove i686-apple-darwin cross-testing
calebzulawski Nov 20, 2023
b991658
Test that the GC consults the extra_fn_ptr map
saethlin Nov 19, 2023
fecd3e6
Remove now deprecated target x86_64-sun-solaris.
psumbera Nov 20, 2023
9ada654
Test with -Zmiri-provenance-gc=1 on Linux
saethlin Nov 18, 2023
8a77060
Remove now unnecessary x86_64_sun_solaris.rs.
psumbera Nov 20, 2023
3c999d8
Update books
rustbot Nov 20, 2023
8cf94c9
Fix occurrences of old fn names in comment and tracing
spastorino Nov 21, 2023
f1c72cc
Rollup merge of #117972 - ouz-a:stable_debuginfo, r=celinval
compiler-errors Nov 21, 2023
4427629
Rollup merge of #118029 - saethlin:allocid-gc, r=RalfJung
compiler-errors Nov 21, 2023
3b12a59
Rollup merge of #118081 - nnethercote:rustc_ty_utils, r=compiler-errors
compiler-errors Nov 21, 2023
390743c
Rollup merge of #118083 - calebzulawski:remove-i686-apple-darwin, r=a…
compiler-errors Nov 21, 2023
369779c
Rollup merge of #118091 - psumbera:solaris-target, r=compiler-errors
compiler-errors Nov 21, 2023
026adc2
Rollup merge of #118097 - rustbot:docs-update, r=ehuss
compiler-errors Nov 21, 2023
aa69088
Rollup merge of #118115 - spastorino:fix-old-fn-names, r=compiler-errors
compiler-errors Nov 21, 2023
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
Alphabetize features.
  • Loading branch information
nnethercote committed Nov 20, 2023
commit 9e6ee728a268ad700336d9b2933e152849c22a99
4 changes: 2 additions & 2 deletions compiler/rustc_ty_utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
#![allow(internal_features)]
#![feature(assert_matches)]
#![feature(associated_type_defaults)]
#![feature(box_patterns)]
#![feature(if_let_guard)]
#![feature(iterator_try_collect)]
#![feature(let_chains)]
#![feature(if_let_guard)]
#![feature(never_type)]
#![feature(box_patterns)]
#![recursion_limit = "256"]
#![deny(rustc::untranslatable_diagnostic)]
#![deny(rustc::diagnostic_outside_of_impl)]
Expand Down