Skip to content

Commit e710132

Browse files
authored
Rollup merge of #88259 - LeSeulArtichaut:complete-thir-unsafeck, r=oli-obk
Do not mark `-Z thir-unsafeck` as unsound anymore The initial implementation of the THIR unsafety checker is now complete (rust-lang/project-thir-unsafeck#7). r? `@oli-obk`
2 parents c31e02a + 6a2b448 commit e710132

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: compiler/rustc_session/src/options.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1287,7 +1287,7 @@ options! {
12871287
thinlto: Option<bool> = (None, parse_opt_bool, [TRACKED],
12881288
"enable ThinLTO when possible"),
12891289
thir_unsafeck: bool = (false, parse_bool, [TRACKED],
1290-
"use the work-in-progress THIR unsafety checker. NOTE: this is unsound (default: no)"),
1290+
"use the THIR unsafety checker (default: no)"),
12911291
/// We default to 1 here since we want to behave like
12921292
/// a sequential compiler for now. This'll likely be adjusted
12931293
/// in the future. Note that -Zthreads=0 is the way to get

0 commit comments

Comments
 (0)