diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2021-08-23 20:45:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-23 20:45:51 +0200 |
| commit | e7101326160ebf6642339a5099d22f6502bf2ae4 (patch) | |
| tree | 38dcacb3a1cac6c8cc35f3a6ca39979d3b1f996e | |
| parent | c31e02a24caac2a4277475a79eb2934141265dac (diff) | |
| parent | 6a2b448f2a1d1e219f1f02444482ff0328cbb40f (diff) | |
| download | rust-e7101326160ebf6642339a5099d22f6502bf2ae4.tar.gz rust-e7101326160ebf6642339a5099d22f6502bf2ae4.zip | |
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`
| -rw-r--r-- | compiler/rustc_session/src/options.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs index 481520122d2..f36fc29e974 100644 --- a/compiler/rustc_session/src/options.rs +++ b/compiler/rustc_session/src/options.rs @@ -1287,7 +1287,7 @@ options! { thinlto: Option<bool> = (None, parse_opt_bool, [TRACKED], "enable ThinLTO when possible"), thir_unsafeck: bool = (false, parse_bool, [TRACKED], - "use the work-in-progress THIR unsafety checker. NOTE: this is unsound (default: no)"), + "use the THIR unsafety checker (default: no)"), /// We default to 1 here since we want to behave like /// a sequential compiler for now. This'll likely be adjusted /// in the future. Note that -Zthreads=0 is the way to get |
