diff options
| author | Léo Lanteri Thauvin <leseulartichaut@gmail.com> | 2021-08-23 14:52:42 +0200 |
|---|---|---|
| committer | Léo Lanteri Thauvin <leseulartichaut@gmail.com> | 2021-08-23 14:52:42 +0200 |
| commit | 6a2b448f2a1d1e219f1f02444482ff0328cbb40f (patch) | |
| tree | dbac84a4e9ececa49ab6d603a4c11119a9856cc0 | |
| parent | 33fdb797f59421c7bbecaa4588ed5d7a31a9494a (diff) | |
| download | rust-6a2b448f2a1d1e219f1f02444482ff0328cbb40f.tar.gz rust-6a2b448f2a1d1e219f1f02444482ff0328cbb40f.zip | |
Do not mark `-Z thir-unsafeck` as unsound anymore
| -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 |
